Page 1 of 1

HELP! Form problems

Posted: Tue Dec 10, 2002 12:31 pm
by matthiasone
I have a very simple form but the submit button is not showing up? Any ideas why?

Code: Select all

<html>
<head>
	<title>Testing</title>
</head>

<body text="#00000">
<?
  require_once("/usr/www/users/faog/functions/db_fns.php");
  $aquery = "SELECT sum(quantity) as audio  FROM orderdetails WHERE locked = 'N' AND media = 'A'";
  $aresult = query_db($aquery, "2");
  $audio_cnt = mysql_fetch_array($aresult);
  $vquery = "SELECT sum(quantity) as video  FROM orderdetails WHERE locked = 'N' AND media = 'V'";
  $vresult = query_db($vquery, "2");
  $video_cnt = mysql_fetch_array($vresult);

?>
        <center>
        <table border="0" cellpadding="0" cellspacing="0" width="100%">
		  <tr>
		  	<td><font size="3"><b>New Orders Summary</b></font></td>
		  </tr>
		  <tr>
		  	<td>&nbsp;</td>
		  </tr>
		  <tr>
		  	<td><font size="2">Audio Count: <?=$audio_cnt&#1111;'audio']?></font></td>
		  </tr>
		  <tr>	  
		  	<td><font size="2">Video Count: <?=$video_cnt&#1111;'video']?></font></td>
		  </tr>	
		  <tr>	  
		  	<td><form method="post" action="staffpage.php?area=dist&view=capture">
			    <input="submit" value="Capture"></form></td>
		  </tr>	
	    </table>
        </center>

</body>
</html>

Posted: Tue Dec 10, 2002 12:57 pm
by kcomer
try <input type="submit" not <input="submit"