grrrr... this script im making isnt working. On one page it is the forms you can fill out then it goes to another page that has a psge of waht you typed into the boxes. the url to this is http://neckt3r.com/cgi-bin/profile/form.php here is the code.
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<?php
//Here are the variables//
//bg color
$bgcolor="#003399";
//link color
$link="#FFFFFF";
//Visited Link color
$vlink="#FFFFFF";
?>
<?php
echo "This is Test maX made by Cameron Cecil from http://neckt3r.com. Just fill in the forms below and it will make out a test with all the information you have provided!";
?>
<form name="form1" method="post" action="form2.php">
<font face="Verdana" size="2" color="#000000">
Font:<input type="text" name="$fontname"><br>
Font Color:<input type="text" name="$fontcolor"><br>
Title Size:<input type="text" name="$tsize"><br>
Font Size(-1 to +7):<input type="text" name="$fontsize"><br><br>
<center>Title:<input type="text" name="$title"></center><br>
Question 1:<input type="text" name="$1"><br>
A.<input type="text" name="$1a"> B.<input type="text" name="$1b"><br>
C.<input type="text" name="$1c"> D.<input type="text" name="$1d"><br><br>
Question 2:<input type="text" name="$2"><br>
A.<input type="text" name="$2a"> B.<input type="text" name="$2b"><br>
C.<input type="text" name="$2c"> D.<input type="text" name="$2d"><br><br>
<input type="submit" name="Submit" value="Submit">
</font></form>
</body>
<b>here is the code for form2.php</b>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="$fontcolor">
<center>
<font face="$fontname" color="$fontcolor" size="$tsize>
<?php
echo("$title");
?>
</font>
</center>
<font face="$fontname" color="$fontcolor" size="$fontsize>
<?php
echo("$1");
echo("$1a $1b");
echo("$1c $1d");
?><br>
<?php
echo("$2");
echo("$2a $2b");
echo("$2c $2d");
?>
</font>
</body>
<b> thanks </b>