[ create a new paste ] login | about

Link: http://codepad.org/hld1m38z    [ raw code | output | fork ]

PHP, pasted on Apr 23:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
</head>
<body>
<form name="form1" name="signup-form" method="post">

<select name="select_box"> 
	<option value="0">Please Select</option>
	<option value="1">OPT 1</option>
	<option value="2">OPT 2</option>
        <option value="3">OPT 3</option>
</select>
<input type="submit" value="Go!" />
</form>
</body>
</html>


Output:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
</head>
<body>
<form name="form1" name="signup-form" method="post">

<select name="select_box"> 
	<option value="0">Please Select</option>
	<option value="1">OPT 1</option>
	<option value="2">OPT 2</option>
        <option value="3">OPT 3</option>
</select>
<input type="submit" value="Go!" />
</form>
</body>
</html>


Create a new paste based on this one


Comments: