This example include show.php File with the current file
include("show.php");
using php:
How can I go to show.php file without include current file ?
Printable View
This example include show.php File with the current file
include("show.php");
using php:
How can I go to show.php file without include current file ?
you mean like a redirect??PHP Code:Header("Location: show.php");
Thank you too much !! chrisjk !!