Hi I've made a php lookup and I want to add a br tag in the <form>
but It wont let me.
Can anyone help?
PHP Code:
<form action="test.php" method='post'>
<label><input type='submit' name='submit'/></label><br /><br />
<select name="test" size="1">
<option selected value="">SELECT ONE</option>
<option value="">--------</option>
<label><input='' name=''/></label><br/>
<?php
while
($testid = mysql_fetch_array($result)){
$test = $testid['testid'];
$ytest = htmlspecialchars($testid['testid']);
echo "<option value='$test'>$ytest<br/></option>\n";
}
//////////// =>I want to and a <br /> here<=
echo "<select name='test' size='1'>";
echo "<option value='$test'>$test</option>\n";
echo "<br /><input type='submit' value='Submit'>\n";
?>
<br/><br/>
</form>
And thanks in advance.
Bookmarks