PHP interesse |
|
Het onderstaande search form werkt zoals ik het wens...op een klein dingetje na. Als de gebruiker in het zoek veld klikt dan blijft de waarde "zoeken" staan. Ik zou willen dat al men in het zoekveld klikt de "value" leeg is.
<?php
echo"<form name='form' action='index.php?page=inc_search_result' method='POST' onSubmit='return preSubmitSearchForm( this );'>
<table cellpadding='0px' cellspacing='0px'>
<tr>
<td style='border-style:solid none solid solid;border-color: green ;border-width:0px;'>
<input type='text' value='zoeken' name='q' maxlength='50' style='width:85px; border:0px solid; height:17px; padding:0px 0px; position:relative;'>
</td>
<td style='border-style:solid;border-color: green ;border-width:0px;'>
<input type='submit' value='' style='border-style: none; background: url(img/icons/nav/search-icon4.gif) no-repeat; width: 24px; height: 25px;'>
</td>
</tr>
</table>
</form> ";
<?php echo"<form name='form' action='index.php?page=inc_search_result' method='POST' onSubmit='return preSubmitSearchForm( this );'> <table cellpadding='0px' cellspacing='0px'> <tr> <td style='border-style:solid none solid solid;border-color: green ;border-width:0px;'> <input type='text' value='zoeken' name='q' maxlength='50' style='width:85px; border:0px solid; height:17px; padding:0px 0px; position:relative;'> </td> <td style='border-style:solid;border-color: green ;border-width:0px;'> <input type='submit' value='' style='border-style: none; background: url(img/icons/nav/search-icon4.gif) no-repeat; width: 24px; height: 25px;'> </td> </tr> </table> </form> ";
|