| Posted by Ian Davies on 04/17/06 13:28 
I have the folowing script which has two forms. the first adds a record to adatabase the second uploads a file. The problem is each form has its own
 button to perform the action. What I wish to do is to combine the two forms
 and have one button to do the two actions. Please help
 
 *********************************************************************
 $q= MY INSERT SQL HERE
 
 <p class="style2"><strong>Upload A Resource </strong></p>
 <form name="form1" method="post" action="">
 <table width="607" height="304" border="0" cellpadding="0"
 cellspacing="0">
 <tr>
 TABLE WITH TEXT FIELDS HERE THAT ARE SENT TO THE DATABASE
 or</p>
 <p>
 <?php $add_order = mysql_query($q) or die('Query failed: ' .
 mysql_error());?>
 <input type="submit" name="Submit" value="Submit">
 </p>
 </div></td>
 </tr>
 </table>
 </form>
 <form enctype="multipart/form-data" action="FileProcessing.php"
 method="POST">
 <p>
 <input type="hidden" name="MAX_FILE_SIZE" value="100000" />
 
 </p>
 <p>  Choose a file to upload:
 <input name="uploadedfile" type="file" />
 <br />
 <input type="submit" value="Upload File" />
 </p>
 </form>
 
 <p> </p>
 <p class="style17 style9  style2"> </p>
 
 *********************************************************
 
 Thanks
 Ian
 [Back to original message] |