:/ I used the form and entered info.. didnt give me any errors...
but it also showed me the form again..it didnt:
echo "<font color=\"white\">Thank you! Card Information entered.</font>\n";
like it was supposed to.. here is the form.php code again:
<html>
<header>
<title>STARS Star Wars Cards - Submissions</title>
</header>
<body bgcolor="#000000" text="#ffffff" link="#00ff00" vlink="#3cb371">
<center>
<IMG src= "starsreb.png" width=174 height=37><br>
<h1>Expansion Set</h1>
<h2><i>Submissions</i></h2>
<p>
</center>
<font size="+1">If you are sending in more than one card idea, you may leave off your email address & fleet, on all but the first card idea.<br>
Special abilities maybe entered either by putting them in the flavour text or using the buttons at the bottom of the Character section.<br>
After sending one card idea, before typing in the next one, you will need to clear all the fields by pressing "CLEAR". Wow that's a novel idea!<p>
To submit a Finished Card Image, save it as a GIF file & email it to <a href="mailto:seb_sb@hotmail.com">Johny Storm</a>, with a Subject line of "STARS Cards".<p>
<center>
</font>
<?php
if ($submit) {
// process form
$db = mysql_connect ("localhost", "user", "pass") or die ('I cannot connect to the database.. darnit.');
mysql_select_db ("swhyperspace") or die ("damn!");
$sql = "INSERT INTO cards (alias,email,fleet,title,side,destiny,deploy,forfiet,power,abilman,speed,arm,lore,game,image,type,type2,c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11) VALUES ('$malias','$memail','$mfleet','$mtitle','$mside','$mdestiny','$mdeploy','$mforfiet','$mlore','$mpower,'$mabilman','$mspeed','$marm','$mgame','$mimage','$mtype','$mtype2','$mc1','$mc2','$mc3','$mc4','$mc5','$mc6','$mc7','$mc8','$mc9','$mc10','$mc11')";
$result = mysql_query($sql);
echo "<font color=\"white\">Thank you! Card Information entered.</font>\n";
} else{
// display form
}
?>