Can someone tell me if the following is feasible:
Thanks
I think I did not provide enough information.
So currently the search spits out a table with the links as one of the columns. The user can than click on one of these links and then on the following page, they can click on another link to get to the information that they need.
I am hoping to pull that information in the background and replace the first link with the second link. Redirecting is not an option (I think)
<?php
//do redirection in your php file using the header fn and don't show any output before this call
header('Location: http://redirecturl.com/');
exit;
?>
For more information visit php header fn
Take a look at header function (http://php.net/manual/ru/function.header.php):
header("Location: http://www.example.com/");