You have single quotes inside of single quotes. Break out of PHP parsing mode to output complex data like HTML:
Code:
?>
<form action="/search.php" method="get" style="margin-bottom: 2px; margin-top: 5px;">
<input
type="text"
onfocus="this.value === this.defaultValue && (this.value = '');"
onblur="this.value = this.value || this.defaultValue;"
name="search"
style="width: 95px;"
value="keyword search"
>
<input type="hidden" name="startrow" value="0">
<input type="submit" value="Go!">
</form>
<?php
Bookmarks