Archive for January, 2010

Simple PHP Redirector

This code represents a simple PHP redirector for your web site . PHP_Redirector.php <?php if($_POST[choice] == “google”) { $selection = “http://www.google.lk”; } elseif($_POST[choice] == “yahoo”) { $selection = “http://www.yahoo.com”; } elseif($_POST[choice] == “bing”) { $selection = “http://www.bing.com”; } header(“Location: $selection”); ?> <html> <head> <title> Wich Search Engine </title> </head> <body> <div style =”background:#339933″> <form action [...]

Continue reading »

Follow

Get every new post delivered to your Inbox.