CaptainB
04-25-2008, 06:19 PM
Hi guys,
I have a little problem which I can't seem to figure out.
This is my code:
<input type="text" name="user" maxlength="30" value="<?php echo $form->value("user"); ?>"><
And this is my error:
… value="<?php echo $form->value("user"); ?>">
Have you forgotten the "equal" sign marking the separation between the attribute and its declared value? Typical syntax is attribute="value".
When I then insert the equal sign I get this error:
Line 60, Column 92: an attribute value literal can occur in an attribute specification list only after a VI delimiter.
… value="<?php echo $form->value("user"); ?>">
Have you forgotten the "equal" sign marking the separation between the attribute and its declared value? Typical syntax is attribute="value".
I tried to do that too, but it still does not work. Anybody knows how to come around that?
I have a little problem which I can't seem to figure out.
This is my code:
<input type="text" name="user" maxlength="30" value="<?php echo $form->value("user"); ?>"><
And this is my error:
… value="<?php echo $form->value("user"); ?>">
Have you forgotten the "equal" sign marking the separation between the attribute and its declared value? Typical syntax is attribute="value".
When I then insert the equal sign I get this error:
Line 60, Column 92: an attribute value literal can occur in an attribute specification list only after a VI delimiter.
… value="<?php echo $form->value("user"); ?>">
Have you forgotten the "equal" sign marking the separation between the attribute and its declared value? Typical syntax is attribute="value".
I tried to do that too, but it still does not work. Anybody knows how to come around that?