James
Member
Registered: 1st Jun 02
Location: Surrey
User status: Offline
|
im makin a website for a uni project and i wanna put a combo box in and then a box where the user can type stuff in, i know this i really basic but does anyone know the code for those?
they dont actually have to do anything because its not suposed 2 be a fully functional website, sounds stupid i no!!
cheers
|
Joff
Member
Registered: 17th Oct 00
Location: Cambridgeshire
User status: Offline
|
code:
<select><option>Option 1</option><option>Option 2</option><option>Option 3</option></select>
<textarea>Multi-line text field</textarea>
<input type="submit">
[Edited on 20-03-2004 by Joff]
|
Drew
Banned
Registered: 24th Nov 01
Location: County Durham
User status: Offline
|
^^^^^^^ is the wot the code thing is for - so you can put html code in without it being 'active'
|
Joff
Member
Registered: 17th Oct 00
Location: Cambridgeshire
User status: Offline
|
Yes Drewston.
|
Drew
Banned
Registered: 24th Nov 01
Location: County Durham
User status: Offline
|
well aint that clever
|
James
Member
Registered: 1st Jun 02
Location: Surrey
User status: Offline
|
cheers joff, what about a single line text box?
|
Joff
Member
Registered: 17th Oct 00
Location: Cambridgeshire
User status: Offline
|
code: <input type="text" value="Some text" />
Why not just look in the source code for this site? It's got examples of all the Form elements you're trying to use.
[Edited on 20-03-2004 by Joff]
|
Joff
Member
Registered: 17th Oct 00
Location: Cambridgeshire
User status: Offline
|
quote: Originally posted by Drew
well aint that clever
Yes....
|