Can anyone see anything wrong with this code?
the query works fine all posted information is submitted into the database, but it returns a error every single time.
if ($op == postdata)
{
$inse = MYSQL_QUERY ("INSERT INTO AA_Apps_Table (aid,aname,acname,aage,acoun,aema,amsn,ahon,atrac,amap,awea,aref,aproc,aram,ahard,amon,
acon,avid,aedit,ajoin,admin_1,admin_2,admin_3,admin_4,ex1,ex2,ex3,ex4,ex5,ex6,ex7,ex8,ex9,ex10,ex11,ex12,ex13)"
."VALUES('','$g_name','$g_clanname','$g_age','$g_country','$g_email','$g_msn','$g_honour','$g_track','$g_map','$g_weapon','$g_refer',
'$g_proc','$g_ram','$g_hard','$g_mon','$g_conn','$g_vid','$g_edit','$g_join','0','0','0','0','extra','extra','extra','extra','extra',
'extra','extra','extra','extra','extra','extra','extra','extra')");
$inseresults = @mysql_query($inse);
if ($inseresults)
{
echo "Your Application Has Been Submitted Successfully<br>Please check your email and the applications block <br> Located on the main Page.";
} else { print ('looks like a error'); }
}