Page 1 of 1

Firefox and Netscape Not Saving Data

Posted: Mon Dec 11, 2006 5:21 pm
by PastorHank
I have a form whose submit button's code is

Code: Select all

<FORM action=http://www.worsoftware.com/cgi-bin/saveselections.php method=post
When called from a browser running IE, everything works fine, data is inserted into the database, confirmation email is sent and confirmation page is displayed - when called from a browser running either firefox or netscape nothing.

the php code is simple and straight forward

Code: Select all

/* First Part - all fields follow the same format */

$contact=strip_tags(trim($_POST['username']));
$emailonform=strip_tags(trim($_POST['emailaddress']));
$commentsonform=strip_tags(trim($_POST['comments']));
$cityonform=strip_tags(trim($_POST['city']));

/* Database connection works in ie */

  $connection = mysql_connect($host,$user,$password) 
        or die("Couldn't Make the Connection"); 

/* Table format information */

echo "<h1 align='center'>$animaltype</h1>";

echo "<table border='1>";
 
 echo "<tr>\n
  		<td align='center'>$contact</td>
  		<td align='center'>$emailonform</td>
  		<td align='center'>$cityonform</td>
		</tr>";
 echo "<tr>\n
As I said, it works perfectly in IE and even with the MAC Safari but nothing in Netscape

Firefox opens an email window.


Where should I look?

Thank you

Posted: Mon Dec 11, 2006 5:37 pm
by Christopher
The code you posted does not have a closing bracket and should have quotes around the attribute values

Posted: Mon Dec 11, 2006 5:45 pm
by PastorHank
Christopher,

I'm confused by what I left off....

This is the start of the form information

Code: Select all

<FORM action=http://www.worsoftware.com/cgi-bin/saveselections.php method=post align="center">

My PHP code is

Code: Select all

<?php

/* Let's get the data from the entry form */

$contact=strip_tags(trim($_POST['username']));
$emailonform=strip_tags(trim($_POST['emailaddress']));
$commentsonform=strip_tags(trim($_POST['comments']));
$cityonform=strip_tags(trim($_POST['city']));
$scoreofgame=strip_tags(trim($_POST['finalscore']));

$poinsetta=$_POST['bowlgame1']; 
$pioneer=$_POST['bowlgame2'];

$neworleans=$_POST['bowlgame3']; 
$birmingham=$_POST['bowlgame4'];
$newmexico=$_POST['bowlgame5']; 
$ftworth=$_POST['bowlgame6'];

$honolulu=$_POST['bowlgame7']; 
$detroit=$_POST['bowlgame8'];
$sanfrancisco=$_POST['bowlgame9']; 
$shreveport=$_POST['bowlgame10'];

$sandiego=$_POST['bowlgame11']; 
$houston=$_POST['bowlgame12'];
$nashville=$_POST['bowlgame13']; 
$elpaso=$_POST['bowlgame14'];

$memphis=$_POST['bowlgame15']; 
$tempe=$_POST['bowlgame16'];
$orlando=$_POST['bowlgame17']; 
$charlotte=$_POST['bowlgame18'];

$sanantonio=$_POST['bowlgame19']; 
$atlanta=$_POST['bowlgame20'];
$boise=$_POST['bowlgame21']; 
$tampa=$_POST['bowlgame22'];

$dallas=$_POST['bowlgame23']; 
$jacksonville=$_POST['bowlgame24'];
$orlando=$_POST['bowlgame25']; 
$pasadena=$_POST['bowlgame26'];

$glendale=$_POST['bowlgame27']; 
$miami=$_POST['bowlgame28'];
$neworleans2=$_POST['bowlgame29']; 
$toronto=$_POST['bowlgame30'];

$mobile=$_POST['bowlgame31']; 
$glendale2=$_POST['bowlgame32'];


/* Open Database Insert Data Into Table */

   $host="localhost"; 
   $user="username is here";
   $password="password is here" ;
   $connection = mysql_connect($host,$user,$password) 
        or die("Couldn't Make the Connection"); 
   $database="worso3_football";
   $db = mysql_select_db($database,$connection)
   	 or die("Couldn't Select Database");   

$query = "INSERT INTO footballgames(username,emailaddress,city,comments,
			game1,game2,game3,game4,game5,game6,game7,game8,game9,game10,game11,
			game12,game13,game14,game15,game16,game17,game18,game19,game20,game21,game22,	              game23,game24,game25,game26,game27,game28,game29,game30,game31,game32,bcsfinalscore)
			VALUES ('$contact','$emailonform','$cityonform','$commentsonform',
			'$poinsetta','$pioneer','$neworleans','$birmingham','$newmexico','$ftworth',
			'$honolulu','$detroit','$sanfrancisco','$shreveport','$sandiego','$houston',
			'$nashville','$elpaso','$memphis','$tempe','$orlando','$charlotte','$sanantonio',
			'$atlanta','$boise','$tampa','$dallas','$jacksonville','$orlando','$pasadena','$glendale', 
			'$miami','$neworleans2','$toronto','$mobile','$glendale2','$scoreofgame')";

/*How'd we do? */

$result = mysql_query($query)
	or die ("Couldn't Execute Query.");
	echo "Your Selections Have Been Recorded<br>";
 
$email = "texbowls@yahoo.com";
$headers ="From: hank@worsoftware.com\nBCC: hank@worsoftware.com";

$subject = "Another Player Enters";

$msg1="$contact";
$msg2="$emailonform";
$msg3="$cityonform";

$message = "$msg1"."\n"."$msg2"."\n"."$msg3";

mail($email, $subject, $message, $headers);

$animaltype="Selections";
 
echo "<h1 align='center'>$animaltype</h1>";
 
echo "<table border='1>";
 
 echo "<tr>\n
  		<td align='center'>$contact</td>
  		<td align='center'>$emailonform</td>
  		<td align='center'>$cityonform</td>
		</tr>";
 echo "<tr>\n
		<td align='right'>Poinsetta</td>
  		<td align='center'>$poinsetta</td>
		</tr>";
 echo "<tr>\n
		<td align='right'>Pioneer</td>
  		<td align='center'>$pioneer</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>New Orleans</td>
 		<td align='center'>$neworleans</td>
		</tr>";
 echo "<tr>\n
		<td align='right'>Birmingham</td>
  		<td align='center'>$birmingham</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>New Mexico</td>
  		<td align='center'>$newmexico</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Ft. Worth</td>
  		<td align='center'>$ftworth</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Honolulu</td>
  		<td align='center''>$honolulu</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Detroit</td>
  		<td align='center'>$detroit</td>
		</tr>";
 echo "<tr>\n
		<td align='right'>San Francisco</td>
   		<td align='center'>$sanfrancisco</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Shreveport</td>
  		<td align='center'>$shreveport</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>San Diego</td>
  		<td align='center'>$sandiego</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Houston</td>
  		<td align='center'>$houston</td>
		</tr>";
 echo "<tr>\n
		<td align='right'>Nashville</td>
   		<td align='center'>$nashville</td>
 		</tr>";
 echo "<tr>\n
		<td align='right'>El Paso</td>
  		<td align='center'>$elpaso</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Memphis</td>
  		<td align='center'>$memphis</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Tempe</td>
  		<td align='center'>$tempe</td>
		</tr>";
 echo "<tr>\n
		<td align='right'>Orlando</td>
   		<td align='center'>$orlando</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Charlotte</td>
  		<td align='center'>$charlotte</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>San Antonio</td>
  		<td align='center'>$sanantonio</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Atlanta</td>
  		<td align='center'>$atlanta</td>
		</tr>";
 echo "<tr>\n
		<td align='right'>Boise</td>
   		<td align='center'>$boise</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Tampa</td>
  		<td align='center'>$tampa</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Dallas</td>
  		<td align='center'>$dallas</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Jacksonville</td>
  		<td align='center'>$jacksonville</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Orlando</td>
  		<td align='center'>$orlando</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Pasadena</td>
  		<td align='center'>$pasadena</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Glendale</td>
  		<td align='center'>$glendale</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Miami</td>
  		<td align='center'>$miami</td>
		</tr>"; 
 echo "<tr>\n
 		<td align='right'>Sugar</td>
  		<td align='center'>$neworleans2</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>International</td>
  		<td align='center'>$toronto</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Mobile</td>
  		<td align='center'>$mobile</td>
		</tr>";
 echo "<tr>\n
 		<td align='right'>Championship</td>
  		<td align='center'>$glendale2</td>
		<td align='right'>Predicted Score</td>
  		<td align='center'>$scoreofgame</td>
		</tr>"; 
		
echo "</table>\n";
 ?>
This works in IE and MAC Safari

Thanks

Posted: Mon Dec 11, 2006 5:49 pm
by John Cartwright
Can you post the form?

Posted: Mon Dec 11, 2006 5:59 pm
by PastorHank
feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]


Here's the html code --- WARNING - IT'S HUGH


[syntax="html"]
<HTML><HEAD><TITLE>2006-07 College Football Bowl Sc</TITLE>
<META http-equiv=Content-Language content=en-us>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD>
<BODY>
<P align=center><B>2006-07 Bowl Pick 'Em&nbsp;</B></P>
<HR>

<P align=center><B>2006-07 College Football Bowl Schedule <BR>BOWL LOCATION 
DATE/TIME NETWORK </B></P>
<FORM action=http://www.worsoftware.com/cgi-bin/saveselections.php method=post 
align="center">
<DIV align=center>
<TABLE id=table1 height=153 width="46%" border=0>
  <TBODY>
  <TR>
    <TD align=middle width=95 height=147>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=NIU 
      name=bowlgame1><B>Northern Illinois&nbsp;</B></P></TD>
    <TD align=middle height=147>
      <P align=center><IMG height=106 src="bowl2006_files/Poinsettia.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=127 height=147>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=TCU 
      name=bowlgame1><B>TCU&nbsp;</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table2 width=573 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=79>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=BYU 
      name=bowlgame2><B>BYU&nbsp;</B></P></TD>
    <TD align=middle width=404>
      <P align=center><IMG height=106 src="bowl2006_files/Vegas.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=68>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Oregon 
      name=bowlgame2><B>Oregon</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table3 width=559 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=79>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Troy 
      name=bowlgame3><B>Troy&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/New%2520Orleans.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Rice 
      name=bowlgame3><B>Rice</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table4 width=558 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=78>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=SouthFlorida name=bowlgame4><B>South Florida&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/PapaJohns.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=ECU 
      name=bowlgame4><B>East Carolina</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table5 width=558 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=78>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=NewMexico 
      name=bowlgame5><B>New Mexico&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/New%2520Mexico.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=SanJoseState name=bowlgame5><B>San Jose 
St.</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table6 width=557 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=77>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Utah 
      name=bowlgame6><B>Utah&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Fort%2520Worth.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Tulsa 
      name=bowlgame6><B>Tulsa</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table7 width=570 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=87>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Hawaii 
      name=bowlgame7><B>Hawaii&nbsp;</B></P></TD>
    <TD align=middle width=405>
      <P align=center><IMG height=106 src="bowl2006_files/Hawaii.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=ArizonaState name=bowlgame7><B>Arizona 
St.</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table8 width=572 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=89>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=CentralMichigan name=bowlgame8><B>Central Michigan&nbsp;</B></P></TD>
    <TD align=middle width=405>
      <P align=center><IMG height=106 src="bowl2006_files/Motor%2520City.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=MiddleTenn name=bowlgame8><B>Middle Tennessee 
  State</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table9 width=538 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=58>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=FloridaState name=bowlgame9><B>Florida State&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Emerald.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=UCLA 
      name=bowlgame9><B>UCLA</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table10 width=605 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=93>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Alabama 
      name=bowlgame10><B>Alabama&nbsp;</B></P></TD>
    <TD align=middle width=403>
      <P align=center><IMG height=106 src="bowl2006_files/Independence.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=87>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=OklahomaState name=bowlgame10><B>Oklahoma 
State</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table11 width=594 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=86>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=TexasA&M name=bowlgame11><B>Texas A&M&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Holiday.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=84>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Cal 
      name=bowlgame11><B>California</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table12 width=569 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=79>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Rutgers 
      name=bowlgame12><B>Rutgers&nbsp;</B></P></TD>
    <TD align=middle width=403>
      <P align=center><IMG height=106 src="bowl2006_files/Texas.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=70>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=KansasState name=bowlgame12><B>Kansas 
State</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table13 width=547 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=67>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Kentucky 
      name=bowlgame13><B>Kentucky&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Music%2520City.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Clemson 
      name=bowlgame13><B>Clemson</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table14 width=595 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=109>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=OregonState name=bowlgame14><B>Oregon State&nbsp;</B></P></TD>
    <TD align=middle width=408>
      <P align=center><IMG height=106 src="bowl2006_files/Sun.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Mizzou 
      name=bowlgame14><B>Missouri</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table15 width=555 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=76>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Houston 
      name=bowlgame15><B>Houston&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Liberty.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=57>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=SouthCarolina name=bowlgame15><B>South 
Carolina</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table16 width="46%" border=0>
  <TBODY>
  <TR>
    <TD align=middle>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Minnesota 
      name=bowlgame16><B>Minnesota&nbsp;</B></P></TD>
    <TD align=middle width=214>
      <P align=center><IMG height=106 src="bowl2006_files/Insight.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=115>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=TexasTech 
      name=bowlgame16><B>Texas Tech</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table17 width=619 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=111>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Purdue 
      name=bowlgame17><B>Purdue&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Champs.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=84>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Maryland 
      name=bowlgame17><B>Maryland</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table18 width=581 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=95>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=BostonCollege name=bowlgame18><B>Boston College&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Meineke.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=62>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=NAVY 
      name=bowlgame18><B>NAVY</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table19 width=558 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=83>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Texas 
      name=bowlgame19><B>Texas&nbsp;</B></P></TD>
    <TD align=middle width=403>
      <P align=center><IMG height=106 src="bowl2006_files/Alamo.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=50>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Iowa 
      name=bowlgame19><B>Iowa</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table20 width=596 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=101>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Georgia 
      name=bowlgame20><B>Georgia&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/ChickFilA.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=71>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=VirginiaTech name=bowlgame20><B>Virginia 
Tech</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table21 width=577 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=91>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Nevada 
      name=bowlgame21><B>Nevada&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/MPC.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=62>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Miami 
      name=bowlgame21><B>Miami</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table22 width=566 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=92>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Tennessee 
      name=bowlgame22><B>Tennessee&nbsp;</B></P></TD>
    <TD align=middle width=403>
      <P align=center><IMG height=106 src="bowl2006_files/Outback.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=53>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=PennState 
      name=bowlgame22><B>Penn State</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table23 width=599 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=108>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Nebraska 
      name=bowlgame23><B>Nebraska&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Cotton.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=67>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Auburn 
      name=bowlgame23><B>Auburn</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table24 width=609 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=113>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=WestVirginia name=bowlgame24><B>West Virginia&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Gator.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=72>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=GeorgiaTech name=bowlgame24><B>Georgia 
Tech</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table25 width=622 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=112>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Arkansas 
      name=bowlgame25><B>Arkansas&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/CapOne.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=86>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Wisconsin 
      name=bowlgame25><B>Wisconsin</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table26 width=613 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=107>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=USC 
      name=bowlgame26><B>USC&nbsp;</B></P></TD>
    <TD align=middle width=403>
      <P align=center><B><IMG height=106 src="bowl2006_files/Rose.gif" width=400 
      border=0> <BR>&nbsp;</B></P></TD>
    <TD align=middle width=81>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Michigan 
      name=bowlgame26><B>Michigan</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table27 width="46%" border=0>
  <TBODY>
  <TR>
    <TD align=middle width=95>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Oklahoma 
      name=bowlgame27><B>Oklahoma&nbsp;</B></P></TD>
    <TD align=middle width=210>
      <P align=center><IMG height=106 src="bowl2006_files/Fiesta.gif" width=400 
      border=0></P></TD>
    <TD align=middle>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=BoiseState name=bowlgame27><B>Boise 
State</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table28 width=556 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=76>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=Louisville name=bowlgame28><B>Louisville&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Orange.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=WakeForest name=bowlgame28><B>Wake 
Forest</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table29 width=551 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=79>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=NotreDame 
      name=bowlgame29><B>Notre Dame&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/Sugar.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=48>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=LSU 
      name=bowlgame29><B>LSU</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table30 width=623 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=114>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=WesternMichigan name=bowlgame30><B>Western Michigan&nbsp;</B></P></TD>
    <TD align=middle width=402>
      <P align=center><IMG height=106 src="bowl2006_files/International.gif" 
      width=400 border=0></P></TD>
    <TD align=middle width=85>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=Cincinnati 
name=bowlgame30><B>Cincinnati</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table31 width=612 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=108>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Ohio 
      name=bowlgame31><B>Ohio&nbsp;</B></P></TD>
    <TD align=middle width=404>
      <P align=center><IMG height=106 src="bowl2006_files/GMAC.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=78>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio 
      value=SouthernMiss name=bowlgame31><B>Southern 
Miss.</B></P></TD></TR></TBODY></TABLE></DIV>
<DIV align=center>
<TABLE id=table32 width=579 border=0>
  <TBODY>
  <TR>
    <TD align=middle width=98>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=OhioState 
      name=bowlgame32><B>Ohio State&nbsp;</B></P></TD>
    <TD align=middle width=403>
      <P align=center><IMG height=106 src="bowl2006_files/BCS.gif" width=400 
      border=0></P></TD>
    <TD align=middle width=56>
      <P align=center><INPUT style="FONT-WEIGHT: 700" type=radio value=Florida 
      name=bowlgame32><B>Florida</B></P></TD></TR></TBODY></TABLE>
<TABLE id=table33 width="74%" border=0>
  <TBODY>
  <TR>
    <TD vAlign=top align=right><B>Name/Handle<BR>&nbsp;</B></TD>
    <TD vAlign=top width=533><INPUT size=12 name=username></TD></TR>
  <TR>
    <TD vAlign=top align=right height=24><B>&nbsp;e-mail address&nbsp; </B></TD>
    <TD vAlign=top height=24><INPUT size=75 name=emailaddress></TD></TR>
  <TR>
    <TD vAlign=top align=right><B>City&nbsp;&nbsp;&nbsp;&nbsp; </B></TD>
    <TD vAlign=top><INPUT size=50 name=city></TD></TR>
  <TR>
    <TD vAlign=top align=right><B>BCS Championship Score&nbsp; 
    <BR>&nbsp;</B></TD>
    <TD vAlign=top><INPUT size=5 name=finalscore></TD></TR>
  <TR>
    <TD vAlign=top align=right height=40><B>Comments</B>&nbsp;<BR>&nbsp;</TD>
    <TD vAlign=top height=40><INPUT size=50 
name=comments></TD></TR></TBODY></TABLE></DIV>
<P 
align=center>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; 
<A href="mailto:texbowls@yahoo.com"><INPUT type=submit value=Submit name=B1></A> 
</P>
<P align=center><B><BR>&nbsp;</B></P></FORM>
<P align=left><FONT size=1><B>Brought to&nbsp; you by the letter "H". 
</B></FONT></P>
<P align=left><IMG height=19 src="bowl2006_files/mst3k_seats.gif" width=70 
border=0> </P></BODY></HTML>

feyd | Please use[/syntax]

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]

Posted: Mon Dec 11, 2006 7:12 pm
by feyd
What does var_dump($_POST) show you?

Posted: Mon Dec 11, 2006 9:45 pm
by PastorHank
I found the problem with the email opening, there was a reference to an email address at the end....