|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
|||
|
|||
|
I am hating life, I want to try and build a mailform on a NT server *which is totally new to me * and I can't do it, I'm used to using a cgi application on a Unix box.
The NT server has PHP4, could I build a mail form using PHP? I'm not sure what mail program the server is running. Any help would be awesome!
__________________
------------------------------------ I'm still learning this stuff so take it easy on me! LOL! |
|
#2
|
|||
|
|||
|
Do a mailform and use mail() phpfunction would be easyest in my opinion.
Scince I assume you know how to use php I'll just supply a snippet with the relevant code. This Q should probably be in some other forum dealing with forms though..... How 'bout PHP? PHP Code:
//Fjodor Last edited by Fjodor : January 13th, 2002 at 10:26 AM. |
|
#3
|
|||
|
|||
|
Scince I am so darn nice, here you have the html part aswell....
Code:
<form name="mailform" method="post" action="thepagewithyourmailscript.php">
<table>
<tr>
<td>Name:</td>
<td>
<input type="text" name="name">
</td>
</tr>
<tr>
<td>Phone:</td>
<td>
<input type="text" name="phone">
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" name="Submit" value="Send mail">
</td>
</tr>
</table>
</form>
If the php doesn't work, kick the admin of the NT box. //Fjodor Last edited by Fjodor : January 13th, 2002 at 10:24 AM. |
|
#4
|
|||
|
|||
|
Thanks man...you are nice! LOL!
I'll give that a try and see how things work out...take care and have a happy new year!
|
![]() |
| Viewing: Dev Shed Forums > Operating Systems > Windows Help > Can N E one tell me how to create a mail form on an NT server? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|