Jump to content

[SOLVED] xx Queries Executed


imdead

Recommended Posts

start the page with a number and increment it every time a query executes.

$i=1;
$sql = "select * from something";
$res = mysql_query($sql) or die(mysql_error());
if($res){
$i++;
}

 

Then at the end of the page show results

echo "there were $i queries run on this page";

 

There might actually be some function for this somewhere

 

Ray

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.