Hi,
I want my script to redirect the visitor to the another script which is in another folder under the same parent directory. And i cannot use the "header()" redirect method.
/www/index.php/ (where i want the visitor to be redirected to)
/www/upload/upload.php/ (where i want the visitor to be redirected from)
Here is what i have so far:
<?php
echo '<META HTTP-EQUIV="Refresh" Content="0; URL="../index.php">';
?>