Can you submit a form to a fax machine????

liunx

Guest
I'm working on a website for a company and they want me to make a page where the user would click the continue button and all the information they filled out would be sent to their fax machine.<br />
<br />
Do you know if this is possible? I've searched the net and haven't found any commands/code that would allow me to implement this. I've tried to have the page submit the form to an email address but that hasn't worked. I'm not sure what's wrong with it. Could you take a look at my code and tell me what's wrong with it?<br />
<br />
Also, if you know how to have the information submitted to a fax could you tell me how to do it? Any input would be greatly appreciated.<br />
<br />
Thanks in advance!<br />
<br />
CODE:<br />
<br />
<html><head><title> Ordering a Care Cab </title></head><br />
<body><form action="mailto:p[email protected]"method="post"><br />
<b>PICKUP DATE AND TIME</b><br />
<br><br><br>Month: <select><br />
<option> January <option> February <option> March<br />
<option> April <option> May <option> June<br />
<option> July <option> August <option> September<br />
<option> October <option> November <option> December<br />
</select><br />
<br>Day: <select><br />
<option> 1 <option> 2 <option> 3 <option> 4<br />
<option> 5 <option> 6 <option> 7 <option> 8<br />
<option> 9 <option> 10 <option> 11 <option> 12<br />
<option> 13 <option> 14 <option> 15 <option> 16 <br />
<option> 17 <option> 18 <option> 19 <option> 20<br />
<option> 21 <option> 22 <option> 23 <option> 24<br />
<option> 25 <option> 26 <option> 27 <option> 28<br />
<option> 29 <option> 30 <option> 31<br />
</select><br />
<br>Time: <select><br />
<option> 12:00 <option> 12:15 <option> 12:30<br />
<option> 12:45 <option> 1:00 <option> 1:15<br />
<option> 1:30 <option> 1:45 <option> 2:00<br />
<option> 2:15 <option> 2:30 <option> 2:45<br />
<option> 3:00 <option> 3:15 <option> 3:30<br />
<option> 3:45 <option> 4:00 <option> 4:15<br />
<option> 4:30 <option> 4:45 <option> 5:00<br />
<option> 5:15 <option> 5:30 <option> 5:45<br />
<option> 6:00 <option> 6:15 <option> 6:30<br />
<option> 6:45 <option> 7:00 <option> 7:15<br />
<option> 7:30 <option> 7:45 <option> 8:00<br />
<option> 8:15 <option> 8:30 <option> 8:45<br />
<option> 9:00 <option> 9:15 <option> 9:30<br />
<option> 9:45 <option> 10:00 <option> 10:15<br />
<option> 10:30 <option> 10:45 <option> 11:00<br />
<option> 11:15 <option> 11:30 <option> 11:45<br />
</select><br />
AM or PM: <select><br />
<option> AM <option> PM </select><br />
<br />
<br />
<br><br><br><br><b>PICKUP INFORMATION</b><br />
<br><br><br>Name: <input type = "text" size = "30" maxlength = "30"><br />
<br>Street: <input type = "text" size = "30" maxlength = "50"><br />
<br>Apartment Number (If applicable): <input type = "text" size = "5" maxlength = "5"><br />
<br>City: <select><br />
<option> St. Cloud<br />
<option> Sartell<br />
<option> Waite Park<br />
<option> Sauk Rapids<br />
<option> St. Joseph </select><br />
<br>State: <select><br />
<option> MN </select><br />
<br>Phone Number (Start with area code):<br />
<input type = "text" size = "3" maxlength = "3"> -<br />
<input type = "text" size = "3" maxlength = "3"> - <input type = "text" size = "4" maxlength = "4"><br />
<br>Smoking Preference: <select><br />
<option> Non-Smoking<br />
<option> Smoking </select><br />
<br>Payment Options: <select><br />
<option> Cash <option> Check </select><br />
<br />
<br><br><br><br><b>DROP OFF INFORMATION</b><br />
<br><br><br>Street: <input type = "text" size = "30" maxlength = "50"><br />
<br>Apartment Number (If applicable): <input type = "text" size = "5" maxlength = "5"><br />
<br>City: <select><br />
<option> St. Cloud<br />
<option> Sartell<br />
<option> Waite Park<br />
<option> Sauk Rapids<br />
<option> St. Joseph </select><br />
<br>State: <select><br />
<option> MN </select><br />
<br />
<br><br><br><input type = "submit" value = "Continue"> <br><br><br><input type = "reset"><br />
</form></body><br />
</html><!--content--><form action="mailto:p[email protected]" method="post"> <br />
<br />
try that.<br />
<br />
also the only way you can do it ta a fax is to have the user print out the form (that is completed) and have them print it. then they have to fax it. no possible way that I know to fax from a website. then again you can talk to a phone so who knows.<!--content-->
 
Back
Top