Hello,
I'm passing multiple user names from a simple form and have them displayed on another html page. I am not writing them to a database. The problem lies in the 'other' html page. The result is the first and last name of both users displayed using a very small font, on the same line. (johnsmithalexjohnson). How do I format the passed names? I am looking for a format such as:
John Smith ___________________________ signature line
Alex Johnson ___________________________ signature line
Simple Form
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<FORM ACTION="Certificate.php" METHOD=POST>
First Name1: <INPUT TYPE=TEXT NAME="firstname1">
Last Name1:
<INPUT TYPE=TEXT NAME="lastname1">
<br>
First Name2:
<INPUT TYPE=TEXT NAME="firstname2">
Last Name2:
<INPUT TYPE=TEXT NAME="lastname2">
<br>
<INPUT TYPE=SUBMIT VALUE="GO">
</FORM>
</body>
</html>
Certificate.php
<?php
echo( "$firstname1 $lastname1
$firstname2 $lastname2");
?>
Any help is greatly appreciated. Thank You.