HELP! Form problems

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
matthiasone
Forum Contributor
Posts: 117
Joined: Mon Jul 22, 2002 12:14 pm
Location: Texas, USA
Contact:

HELP! Form problems

Post 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>
kcomer
Forum Contributor
Posts: 108
Joined: Tue Aug 27, 2002 8:50 am

Post by kcomer »

try <input type="submit" not <input="submit"
Post Reply