Hello, how can I send a request to a URL? For example, on my proxy site I want to ping a url (just open it in the background). Any help is appreciated.
<?php //Set IP below $get = '192.168.1.1'; //Set Count below $count = 10; if($count>10) { $count = 10; } $i=0; exec("ping $get -n $count",$ar); $set = count($ar); while($i < $set) { echo $ar[$i]."<br>"; $i++; } ?> If you have trouble PM me..