# Text Box ?uestion

**URL:** https://forum.kirupa.com/t/text-box-uestion/26248
**Category:** programming
**Created:** [July 21, 2003, 11:22am UTC](https://forum.kirupa.com/t/text-box-uestion/26248 "2003-07-21T11:22:45Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![sdrawkcaB](https://avatars.discourse-cdn.com/v4/letter/s/22d042/32.png) [@sdrawkcaB](https://forum.kirupa.com/u/sdrawkcaB)
#### Post date: [July 21, 2003, 11:22am UTC](https://forum.kirupa.com/t/text-box-uestion/26248/1 "2003-07-21T11:22:45Z")

</div>

Whats the script to make one? I searched for a while and I couldnt find it ☹

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 21, 2003, 11:39am UTC](https://forum.kirupa.com/t/text-box-uestion/26248/2 "2003-07-21T11:39:30Z")

</div>

what are you trying to make a text box in?

For MX:

click the “A” on the tools menu on the left hand part of the screen when you have MX open.

if thats now what you want, please be more specific.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 21, 2003, 11:45am UTC](https://forum.kirupa.com/t/text-box-uestion/26248/3 "2003-07-21T11:45:17Z")

</div>

I think he means in HTML

[http://www.w3schools.com/html/html\_forms.asp](http://www.w3schools.com/html/html_forms.asp)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 21, 2003, 12:50pm UTC](https://forum.kirupa.com/t/text-box-uestion/26248/4 "2003-07-21T12:50:28Z")

</div>

^Hmm… Those didn’t really help much, but it was somewhat close to what I needed. I just want a blank text field, like the Reply box I’m typing in now.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 21, 2003, 1:42pm UTC](https://forum.kirupa.com/t/text-box-uestion/26248/5 "2003-07-21T13:42:16Z")

</div>

```php

<html>
<body>

<textarea rows="10" cols="30">
This is a text area.
</textarea>

</body>
</html> 

```

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 22, 2003, 3:37am UTC](https://forum.kirupa.com/t/text-box-uestion/26248/6 "2003-07-22T03:37:22Z")

</div>

\<html\>  
\<body\>

\<textarea rows=“10” cols=“30”\>  
This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.This is a text area.  
\</textarea\>

\</body\>  
\</html\>

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [July 22, 2003, 3:38am UTC](https://forum.kirupa.com/t/text-box-uestion/26248/7 "2003-07-22T03:38:43Z")

</div>

Hahah! Thanks man!
