How to do a permanent redirect using PHP.
Place this code at the top of your PHP page.
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/otherpage.php");
exit();
Mon 5 Mar 2007
Posted by allscoop under php code
No Comments
How to do a permanent redirect using PHP.
Place this code at the top of your PHP page.
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.example.com/otherpage.php");
exit();
Fri 16 Feb 2007
Posted by allscoop under free software
No Comments
A very nice alternative to phpmyadmin is a free script called Eskuel. It is very easy to use, clean and simple layout and very quick navigation. A great feature is the ability to easily add multiple databases and manage them on a single interface. So far Eskuel has been able to accomplish anything I’ve needed to do with a MySQL database.
Fri 2 Feb 2007
Posted by allscoop under other stuff
No Comments
PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. (credit)
Thu 1 Feb 2007
Posted by allscoop under php code
[19] Comments