All I want is to display my search term in the url. Somehow I am not able to get it.
<?php $string = stripcslashes(isset($_GET['string']));?>
<form action="index.php?string=<?php echo $string;?>" method="post">
<input name="string" type="text" class="inputbox" id="String"
value="<?php echo stripcslashes(isset($_REQUEST["string"])); ?>"
size="40" style="width:250px"/>
</form>
Also there is always a 1
displaying in my search field after I make a search. I am sure that is what is messing it up.