Link to home
Start Free TrialLog in
Avatar of wantabe2
wantabe2Flag for United States of America

asked on

PHP Button Issue

The attached code displays the buttons as shown in the photo...they are on top of each other...How can I make them be side by side?
<FORM METHOD="LINK" ACTION="form1.php">
<INPUT TYPE="submit" VALUE="1 Form">
</FORM>

<FORM METHOD="LINK" ACTION="form2.php">
<INPUT TYPE="submit" VALUE="2 Form">
</FORM>

Open in new window

buttons.JPG
Avatar of psimation
psimation
Flag of South Africa image

You can try putting the forms in a table with two collumns:

<table>
<tr><td>{put form1 here}</td><td>{put Form 2 here}</td></tr>
</table>
ASKER CERTIFIED SOLUTION
Avatar of COBOLdinosaur
COBOLdinosaur
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial