I have 4 text boxes that I want to uniformly line up one on top of the other. I cannot find a way to do this, here is the code.
Thanks
Timgerr
Thanks
Timgerr
Code:
<form action="form1.php">
<strong>CoreID</strong>
<input type="text" name="CoreID">
<br>
<strong>First Name</strong>
<input type="text" name="Fname">
<br>
<strong>Last Name</strong>
<input type="text" name="Lname">
<br>
<strong>Phone Number</strong>
<input type="text" name="PNumber">
<br>
<strong> Reason for needing access to <?= $row[colFolder]; ?> folder?</strong> <br>
<!--
This is hidden information -->
<input type= "hidden" name= "ID" value= <?= $row[ID]; ?>>
<input type= "hidden" name= "Location" value= <?= $row[colLocation]; ?>>
<input type= "hidden" name= "Folder" value= <?= $row[colFolder]; ?>>
<input type= "hidden" name= "Owner" value= <?= $row[colOwner]; ?>>
<input type= "hidden" name= "Email" value= <?= $row[colEmail]; ?>>
<textarea name="info" rows="10" cols="80"> </textarea> <br>
<input type="submit">
</form>