Re: PHP Notice Problem
On Wed, 15 Oct 2008 23:48:41 +0000 (UTC), "UteFanJason"
<webforumsuser@macromedia.com> wrote:
> echo '<label>Search: <input type="text name="search" /></label>';
You're missing the closing quote after type="text above. Change it to:
echo '<label>Search: <input type="text" name="search" /></label>';
Gary
|