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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

<textarea name="???? 1

Status
Not open for further replies.

juandiegomc

Programmer
Apr 25, 2003
60
US
Hello,

Here I put the code for a text box to put in a correct translation. But I want to put it with two written words:

(FATHER) --- (PADRE) + [TEXT BOX HERE]. I am not sure how to put in the first two words in columns and the [text box in the third column.??


This code works fine for a single column for written text and another column for the [TEXT BOX WAITING FOR INPUT].

</TD>
</TR>
<TR>
<TD><B> Enter here the Middle name </TD>
<TD>
<textarea name=&quot; Enter here the Middle name &quot;style=&quot;height:20px;width:350px&quot;>
</textarea>
</TD>
</TR>


juandiegomcc@afirmacion.com
 
Hi,

I had to read that a few times before I realized what it was saying. I think this will do what you want:

</TD>
</TR>
<TR>
<TD><B> Enter here the Middle name </TD>
<TD>
<textarea name=&quot;father&quot; style=&quot;height:20px;width:350px&quot;>
Enter here the Middle name
</textarea>
</TD>
</TR>



Travis Hawkins
BeachBum Software
travis@cfm2asp.com
 
If it's only to hold a few words, you might be better off with a text box instead of a textarea:

Code:
<TR>        
<TD><B>Middle name: </TD>
<TD>        
<input type=&quot;text&quot; name=&quot;father&quot; size=&quot;50&quot; maxlength=&quot;50&quot; style=&quot;height:20px;width:350px&quot; value=&quot;Enter Middle name here&quot;>        
</TD>        
</TR>

Posting code? Wrap it with code tags: [ignore]
Code:
[/ignore][code]CodeHere
[ignore][/code][/ignore].
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top