Skip to content Skip to sidebar Skip to footer

Mysql Query Runs Twice

I have an php file in which I include the PHP Simple HTML DOM Parser: include('simple_html_dom.php'); This inclusion makes my mysql_query($query) execute twice on my page - if I r

Solution 1:

Add a call to debug_print_backtrace() before mysql_query(). That will allow you to track the includes trail.


Post a Comment for "Mysql Query Runs Twice"