Advertisement
Advertisement
| 05.08.2008 at 01:31PM PDT, ID: 23387580 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: |
<form name='requisitions' action="<?php echo ($_SERVER['PHP_SELF']); ?>" method='post'>
<table border="0" cellspacing="3" cellpadding="6" width="768">
<tr><td width="175" align="right">Requisition Number:</td><td><input type="text" size="6" name="req_num" value="<?php if(isset($_POST['req_num'])); ?>"></td></tr>
<tr><td width="175" align="right">Requisition Date (yyyy-mm-dd):</td><td><input type="text" size="10" name="req_date" value="<?php if(isset($_POST['req_date'])); ?>"></td></tr>
<tr><td width="175" align="right">Sent To (initials):</td><td><input type="text" size="2" name="sent_to" value="<?php if(isset($_POST['sent_to'])); ?>"></td></tr>
<tr><td width="175" align="right">Date Sent (yyyy-mm-dd):</td><td><input type="text" size="10" name="date_sent" value="<?php if(isset($_POST['date_sent'])); ?>"></td></tr>
<tr><td width="175" align="right">Vendor:</td><td><?php if (isset($_POST['vendor_id']));
connect();
$query = "SELECT vendor_name, vendor_id FROM vendors ORDER BY vendor_name";
$result = @mysql_query ($query) or die('Error: ' . mysql_error()); // Run the query.
// printing the list box select command
echo "<select name='vendor' value=''>";
echo "<option value='choose'>Choose from list ...</option>";
echo "<option value='divider'>------------------</option>";
while($nt=mysql_fetch_array($result)){ //Array or records stored in $mfg_array
echo "<option value=$nt[vendor_id]>$nt[vendor_name]</option>"; //Option values are added by looping through the array
} // end of while
echo "</select>";
mysql_close; ?></td></tr>
<tr><td width="175" align="right">Account Number:</td><td><input type="text" size="12" name="account_num" value="<?php if(isset($_POST['account_num'])); ?>"></td></tr>
<tr><td width="175" align="right">Amount:</td><td><input type="text" size="8" name="amount" value="<?php if(isset($_POST['amount'])); ?>"></td></tr>
<tr><td colspan="2"><hr /></td></tr>
<tr><td width="150" align="right"><input type="submit" name="submit" value="Submit Entry" /></td><td><input type="reset" name="reset" value="Clear Form" /></td></tr>
</table>
</form>
|