Hi,
I am experiencing table crash problem in my sql.. I have insert code that cause the table crash.. see this code
whats wrong with this? before this code I was simply executing mysql_query(... ) .. I thought this could be due to not releasing resultset.
Any help will be much appreciated..
Thanks,
Moazam
I am experiencing table crash problem in my sql.. I have insert code that cause the table crash.. see this code
Code:
$a = mysql_query("INSERT INTO online(session_id,odate) VALUES('$sess','NOW()')"); @mysql_free_result($a);
Any help will be much appreciated..
Thanks,
Moazam
Comment