hi! do you want to read the links from a database? otherwise this is offtopic. if not look at all the html-manuals out there. a simple <meta http-equiv="refresh" conten="5;URL=http://www.absolut.path/to/file.html"> will redirict the others. if you want to use a php file for dynamic redirict do it this way (you have to call the php-script like redirict.php?url=http://www.php.net): <html> <head> <title>redirict</title> <?php echo '<meta http-equiv="refresh" conten="5;URL='.$_GET['url'].'">'; ?> </head> <body> you will get redirected in 5 seconds </body> </html> .ma Ovaltine <ariel@verio-hci.com> wrote@08.05.2003 21:28 Uhr: > Hello, > > I have been looking to find a function that will allow me to redirect to > html pages. The idea is to have an HTML page post to a PHP script and > then redirect to another HTML or PHP page. I want it to act similar to > an include. I appreciate your expertise. > > Ariel > -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php