|
php members script
ive seen a few posts saying something about downloading the members script, where can i download one? Also could some one check this fake search script of mine?
<?php
print <<<_HTML_
<form method="post" action="$_SERVER[PHP_SELF]">
<input type="text" name="search">
<input type="submit" value="search">
_HTML_;
$search = strtolower($_POST['search']);
if ($search == 'home') {include('/index.html');
} else if($page == "games") {include('/games/');
} else {
}
?>
Last edited by jumbosheep; 09-01-2005 at 06:45 PM..
|