Okie this is my problem.... $char_id is a variable in a query that calls all this information on a given charecter and displays it....
I need sum kinda code that takes information in the address and inputs it into a variable..... so it would be sumthin like this
URL : www.blah.com/charecter.php?charecter=7
in this instance $char_id would equal 7
URL : www.blah.com/charecter.php?charecter=4
in this instance $char_id would equal 4
... Anyone know how to make this work?
if ($_GET['charecter'] == "$char_id") {
show_charecter($char_id);
}