How to send a HTTP header to open URL in PHP

1 Answer

0 votes
$url = "http://www.collectivesolver.com";
header('Location: '.$url);
exit;


/*
run:

open the $url 
   
*/

 



answered Mar 8, 2016 by avibootz

Related questions

...