I am using a php script to make my browser visit two URL's in sequence. The php code is shown below. Everytime I execute this, the browser only visits the second URL and skips past the first one. Can anyone help? Thanks!
<?php
header ("Location: [url]http://first_url[/url]");
header ("Location: [url]http://second_url[/url]");
?>