Page 2 of 3

Re: Ticket system

Posted: Thu Oct 08, 2009 1:17 am
by SpiritWebb
This is my main page for the ticket system. The admin login, is at the far right bottom...(not shown)

Re: Ticket system

Posted: Thu Oct 08, 2009 4:38 pm
by hallsofvallhalla

Re: Ticket system

Posted: Thu Oct 08, 2009 8:30 pm
by hallsofvallhalla

Re: Ticket system

Posted: Fri Oct 09, 2009 1:37 am
by SpiritWebb
I get this in the connect.php file...line 2:

Notice: Undefined variable: QUERY_STRING in C:\wamp\www\ticket\connect.php on line 2
Sorry, not logged in please Login

connect.php

Code: Select all

<?php
parse_str("$QUERY_STRING");

$db = mysql_connect("localhost", "root", "") or die("Could not connect.");
if(!$db) 
	die("no db");
if(!mysql_select_db("ticket",$db))
 	die("No database selected."); 
if(!get_magic_quotes_gpc())
{
  $_GET = array_map('mysql_real_escape_string', $_GET); 
  $_POST = array_map('mysql_real_escape_string', $_POST); 
  $_COOKIE = array_map('mysql_real_escape_string', $_COOKIE);
}
else
{  
   $_GET = array_map('stripslashes', $_GET); 
   $_POST = array_map('stripslashes', $_POST); 
   $_COOKIE = array_map('stripslashes', $_COOKIE);
   $_GET = array_map('mysql_real_escape_string', $_GET); 
   $_POST = array_map('mysql_real_escape_string', $_POST); 
   $_COOKIE = array_map('mysql_real_escape_string', $_COOKIE);
}
?>

Re: Ticket system

Posted: Fri Oct 09, 2009 1:58 pm
by hallsofvallhalla

Code: Select all

parse_str("$QUERY_STRING");
delete that line.

Re: Ticket system

Posted: Mon Aug 08, 2011 12:59 pm
by mmoore5553
I am sorry but I am asking if you have completed the other videos in the series ? I have been unable to find them. I been looking for a tutorial like this. Thank you.

Re: Ticket system

Posted: Thu Aug 11, 2011 3:06 am
by hallsofvallhalla
wow i need to finish this :) totally forgot about it.

Re: Ticket system

Posted: Thu Aug 11, 2011 11:47 am
by mmoore5553
oh that would be great. I just doing one for a small business and thought it would be great to learn .

Re: Ticket system

Posted: Fri Aug 12, 2011 12:28 am
by thorian
all of this can be accomplished through basic html... and some styling to make it pretty. form.. submit to email. ie hosted email labeled support from ur host. reply. doing an in game support can be done through the messages tutorial. you could just make the user support.. then pretty up an index of info... or better yet.. through a forum. customizing forums is ez

Re: Ticket system

Posted: Fri Aug 19, 2011 3:44 pm
by Andrew
hallsofvallhalla wrote:wow i need to finish this :) totally forgot about it.
Yeah, it would be awesome. :), Since that's the only thing that I need right now and can't find better video's on youtube than yours!