Is it possible to load 2 different header location in separate blank pages using php?
<?php
$state= $_GET['state'];
$zip= $_GET['zip'];
header ("Location:http://www.site1.com/test?CID=1&state=$state&zip=$zip");
header ("Location:http://www.site2.com/test?CID=2&state=$state&zip=$zip");
?>
If not, how can I set this up so it randomly loads 1 of them?
You can have the page redirected to a random URL using
array_rand():