on opening a php file how would i have it naviagte to aother file?
<?php
href = "http://localhost/file.php"
>
pusedo code ^^
Printable View
on opening a php file how would i have it naviagte to aother file?
<?php
href = "http://localhost/file.php"
>
pusedo code ^^
if I remember correctly, it should be:
this would, when the page loads, go to http://site.com/directory/page.phpPHP Code:<?
Header("Location: http://site.com/directory/page.php");
?>