18 Mar 2012 at 15:40 #21 wildest_jjk wildest_jjk Soldato OP Joined 6 Jun 2011 Posts 2,741 Sorry to be a pain, how do I check the query speeds? Is there a function or something? Cheers!
18 Mar 2012 at 15:55 #22 Pho Pho Soldato Joined 18 Oct 2002 Posts 9,329 Location Derbyshire Something that this: PHP: <?php $start = microtime(true); //your script here $end = microtime(true); $time = $end - $start; echo('script took ' . $time . ' seconds to execute.'); ?> http://stackoverflow.com/a/7720279/171703
Something that this: PHP: <?php $start = microtime(true); //your script here $end = microtime(true); $time = $end - $start; echo('script took ' . $time . ' seconds to execute.'); ?> http://stackoverflow.com/a/7720279/171703