Onderwerp bekijken
Vragen/Problemen in verband met infusions
 Onderwerp afdrukken
Ticket syteem bewerking (php)
Cylon
Ik heb een ticket systeem maar vind het niet mooi staan

Om elke antwoord/reactie kom een tekst box om heen te staan
Is dat ook in een tabel te zetten?
Met wie er reactie geef en dan wat hun schrijven er naast


Sorry voor mijn spelling fouten/zins op bouw dyslectisch

Dit is de code
Naam bestand ticket.php
Type mod http://www.phpfusion-nederlands.info/infusions/pro_download_panel/download.php?did=245




if (ini_get('register_globals') != 1) {
   if ((isset($_POST) == true) && (is_array($_POST) == true)) extract($_POST, EXTR_OVERWRITE);
   if ((isset($_GET) == true) && (is_array($_GET) == true)) extract($_GET, EXTR_OVERWRITE);
}
require_once "../../maincore.php";
require_once THEMES."templates/header.php";

if (file_exists(INFUSIONS."ticket_system/locale/".$settings['locale'].".php")) {
   include INFUSIONS."ticket_system/locale/".$settings['locale'].".php";
} else { include INFUSIONS."ticket_system/locale/English.php"; }

include INFUSIONS."ticket_system/infusion_db.php";
error_reporting(E_ALL ^ E_NOTICE);
if (iMEMBER){

if (!isset($stype) || !in_array($stype, array("uvt","uvtl","ust"))) redirect("index.php");
if ($stype == "uvt") {

opentable("  ");

$tic = dbquery("SELECT * FROM ".DB_TICKETSYSTEM." WHERE id = '".$_POST['id']."'");
while($test21 = mysql_fetch_assoc($tic)){

echo "
".$test21['subject']."

".$locale['tick_001']."
      
            
         
         
       
          
         
         
       
       
         
         
       
       
".$locale['tick_002']."
".$locale['tick_003']."
".$locale['tick_004']."

          
      ".$locale['tick_012']."
      
       
         
          
       

       
         
       
      
".$locale['tick_013']."

         

                     
                     

       

      

";

$tic1 = dbquery("SELECT * FROM ".DB_TICKETSYSTEM." WHERE addition = '".$_POST['id']."' Order BY date ASC");
while($test2 = mysql_fetch_assoc($tic1)){
echo"
".$locale['tick_014']."
      
      
       
         
       
      

         

           

       

";
}
if ( $test21['closed'] == "0"){
echo "

".$locale['tick_015']."
      
       
       
         
       
      

         

           

       
                   
       
         
       
      
  
      
      

";
}else{
echo "
".$locale['tick_018']."
";
}
echo "
";
}
closetable();
}

if ($stype == "uvtl") {


if (isset($_POST['addition1'])) {

$addition = $_POST['addition1']
$message = stripinput($_POST['message']);
$result = dbquery("INSERT INTO ".DB_TICKETSYSTEM." (addition, date, message) VALUES ('".$addition."', '".time()."', '".$message."')");
$result1 = dbquery("UPDATE ".DB_TICKETSYSTEM." SET active = '1' WHERE id = '".$_POST['addition1']."'");
}

opentable("  ");
echo "
 
".$locale['tick_019']."
       
       
";
$t="1";
$tic4 = dbquery("SELECT * FROM ".DB_TICKETSYSTEM." WHERE username = '".$userdata['user_name']."' ORDER BY closed ASC, active DESC, priority ASC, date DESC");
while($test25 = mysql_fetch_assoc($tic4)){

$t= $t + "1";
if ( $test25['closed'] == "1"){
$status= $locale['tick_026']
}else{
$status= $locale['tick_027']
}
$progress = "";


if ( $test25['active'] == "1"){
$progress= $locale['tick_030']
}else{
$progress= $locale['tick_031']
}



if ( $test25['priority'] == "1"){
$priority = "".$locale['tick_032']."";
}
if ( $test25['priority'] == "2"){
$priority = "".$locale['tick_033']."";
}
if ( $test25['priority'] == "3"){
$priority = "".$locale['tick_034']."";
}
if ( $test25['priority'] == "4"){
$priority = "".$locale['tick_035']."";
}
$meh = $test25['id']
$dame = showdate("%d-%m-%y %H:%M", $test25['date']);
echo"



";

}
echo"
".$locale['tick_020']."".$locale['tick_021']."".$locale['tick_022']."".$locale['tick_023']."".$locale['tick_024']."".$locale['tick_025']."
".$test25['subject']."".$status."".$progress."".$priority."".$dame."

";
closetable();
}

if ($stype == "ust") {

if (isset($_POST['subject'])) {
$addition = "0";
$closed = "0";
$active = "1";
$username = $userdata['user_name']
$subject = stripinput($_POST['subject']);
$name = stripinput($_POST['name']);
$message = stripinput($_POST['message']);
$priority = stripinput($_POST['priority']);
$result = dbquery("INSERT INTO ".DB_TICKETSYSTEM." (addition, username, name, subject, priority, message, closed, active, date) VALUES ('".$addition."', '".$username."', '".$name."', '".$subject."', '".$priority."', '".$message."', '".$closed."', '".$active."', '".time()."')");
}

opentable("  ");
echo "   

 
".$locale['tick_040']."

       
      
      ".$locale['tick_041']."
      
          
          
         
         
       
          
         
         
       
       
         
         
       
       
".$locale['tick_042']."
".$locale['tick_043']."
".$locale['tick_044']."

          
      ".$locale['tick_045']."
      
       
         
          
       

       
         
       
      
".$locale['tick_046']."

         

                       
                     
 

       
      
       
       
      

       
         
       
      
  
      
      
";
   $rule=$locale['tick_049']   

      
   echo "\n";

closetable();
}

}
require_once THEMES."templates/footer.php";
?>
 
Spring naar forum:
Nieuw onderwerp Antwoorden
Gebruik BBcode of HTML om naar; 'Ticket syteem bewerking (php)', te verwijzen!
BBcode:
HTML:
Vergelijkbare onderwerpen
Onderwerp Forum         Laatste bericht
Ticket Support System 1.0 Infusions : 4 15 Nov 2014, 09:01
Bewerking infusions Algemene v7 support : 7 12 Nov 2014, 06:23
[opgelost] submit ticket Infusions : 4 01 Aug 2010, 11:21