Hi,
I would like to run script to send few requests per secend to the server just for testing.
I have been told that I can use wget like this
eg
<?php
while(true)
{
wget http://server.com
sleep(3);
}
?>
But is giving me error on line wget http://server.com
Could someone tell me what I'm doing wrong.
Thanks