Hi, All! I am trying to get this form to work, I'm not sure I am going about this thing the right way? Here is what I am trying to do. I want the search word to come up at the end of the URL when the user searches. Here is the code: <form name="search" method="get" action="http://www.videoboob.com/launch.php?file=browse&search=keyword"> Search for: <input type="text" value="" name="keyword"> <input type="submit" name="" value="Search"> </form> Code (markup): Here is what I want to happen. The user imputs let's say 'comedy' in the search box. The URL generated in the title bar should be http://www.videoboob.com/launch.php?file=browse&search=keyword&keyword=comedy Am I being clear on this? THANKS for any help! Joe
<form name="search" method="get" action="http://www.videoboob.com/launch.php"> Search for: <input type="text" name="keyword"> <input type="hidden" name="file" value="browse"> <input type="hidden" name="search" value="keyword"> <input type="submit" value="Search"> </form> Code (markup):