Ok so I want to take this code.
PHP Code:<form action="http://kywordpro.com/redirect.php" method="get" class="style1">
Web: <input type="radio"<?php echo ($_GET['a'] == 'txt' || !isset($_GET['a'])) ? " checked=\"checked\"" : ""; ?> name="a" value="txt" /> |
Images: <input type="radio"<?php echo ($_GET['a'] == 'img') ? " checked=\"checked\"" : ""; ?> name="a" value="img" /> |
Video: <input type="radio"<?php echo ($_GET['a'] == 'avi') ? " checked=\"checked\"" : ""; ?> name="a" value="avi" /> |
News: <input type="radio"<?php echo ($_GET['a'] == 'news') ? " checked=\"checked\"" : ""; ?> name="a" value="news" /> |
Music: <input type="radio"<?php echo ($_GET['a'] == 'mp3') ? " checked=\"checked\"" : ""; ?> name="a" value="mp3" /><br />
<input type="text" name="q" size="55" value="<?php echo ucwords($q .''); ?>" />
<input type="submit" value="Search" />
<input type='hidden' name="num" value="10"></form>
And remove all of the seach options except for web.
Then I want web to be hidden value.
Can anyone help?



Reply With Quote


Bookmarks