Is there any code in PHP that shows a page for a specific time i.e 10 seconds and automaticlly redirect the page to the other URL ?!
no need for php , you can do it in HTML . <META HTTP-EQUIV="Refresh" CONTENT="10; URL=url-here"> but if u want to do it in php ... <?php header('Refresh: 10; URL=http://www.example.com'); ?> PHP: