Hey all.
First post ;)
and since i've used this site a lot for help i think its about time i registered and joined up.
Im not new to programming but i am new with php + database manipulation.
$app = mysql_query("SELECT * FROM applicant_classinfo WHERE appid='".$_GET['id']."' AND '".$_GET['cname']."'");
That is my mysql statement
and what i try to get values out of it using
$info = mysql_fetch_array($app);
echo $info['dualspec'] ;
the above statement doesn't display anything.
you guys know whats is causing it?