Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

what did i wrong ?!

Status
Not open for further replies.

dogo1984

Programmer
Sep 1, 2002
24
DE
i want to define my input-textfield...

<input name=&quot;benutzername&quot; size=20 maxlength=20 value=<?$benutzername?>>

can someone say me please what i did wrong .. because it doesn`t work yet ..

thx for help
 
try this

<input name=&quot;benutzername&quot; size=&quot;20&quot; maxlength=&quot;20&quot; value=&quot;<? echo $benutzername; ?>&quot;>

or

<?
echo &quot;<input name=\&quot;benutzername\&quot; size=\&quot;20\&quot; maxlength=\&quot;20\&quot; value=\&quot;$benutzername\&quot;>&quot; ;
?>


cheers

spookie
--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top