• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Wie kann ich ein formular außer <form> noch versenden.

Status
Für weitere Antworten geschlossen.

WEBI

Neues Mitglied
Hallo,

wie kann ich ein Formular außer mit dem code <form> noch versenden...??

Wozu ich aber kein Formmail oder sonstiges Programm brauche......


Wer kann mir da weiter helfen..???
:oops: :lol:
 
Werbung:
z.b. mit dem programm "curl".
siehe-> http://curl.haxx.se/
kann GET und POST (auch dateien) daten per HTTP senden
ich finds ziemlich nuetzlich um mal schnell alle header von einer seite rauszubekommen etc.
Code:
niklas@bitch ~ $ curl -I http://www.html.de
HTTP/1.1 200 OK
Date: Sun, 11 Dec 2005 14:56:21 GMT
Server: Apache/2.0.54 (Fedora)
X-Powered-By: PHP/5.0.4
Set-Cookie: html_de_data=************; expires=Mon, 11 Dec 2006 14:56:21 GMT; path=/; domain=www.html.de
Set-Cookie: html_de_sid=*************************; path=/; domain=www.html.de
Cache-Control: no-cache, pre-check=0, post-check=0
Expires: 0
Pragma: no-cache
Connection: close
Content-Type: text/html
 
Aja.

Also mein Quelltext vom Formular schaut so aus:


<html>
<body>
<center><font face="Arial" size="6" color="#000000"><center><u>Kontaktformular</u></center></font></p>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="91"><font size="2" face="Arial" color="blue"><u>Vorname, Nachname</u>:</font></td>
<td width="405">
<input type="text" name="name" size="36" style="background-color: #FFFFFF;" onFocus="this.style.backgroundColor='yellow'" onblur="this.style.backgroundColor='#FFFFFF'"></td>
</tr>
<tr>
<td width="91"><font size="2" face="Arial" color="blue"><u>Email</u>:</font></td>
<td width="405">
<input type="text" name="email" size="36" style="background-color: #FFFFFF;" onFocus="this.style.backgroundColor='yellow'" onblur="this.style.backgroundColor='#FFFFFF'"></td>
</tr>
<tr>
<td width="91"><font size="2" face="Arial" color="blue"><u>Betreff</u>:</font></td>
<td width="405">
<input type="text" name="betreff" size="36" style="background-color: #FFFFFF;" onFocus="this.style.backgroundColor='yellow'" onblur="this.style.backgroundColor='#FFFFFF'"></td>
</tr>
<tr>
<td width="91"><font size="2" face="Arial" color="blue"><u>Nachricht</u>:</font></td>
<td width="405">
<textarea rows="4" name="nachricht" cols="27" style="background-color: #FFFFFF;" onFocus="this.style.backgroundColor='yellow'" onblur="this.style.backgroundColor='#FFFFFF'"></textarea></td>
</tr>
</table>


<input type="submit" value="Abschicken"></p>
</center>
</body></html>



Brauche ich jetzt noch irgendwelche Programme?

Und was muss ich jetzt genau unter diesem Quelltext rein schreiben....???


Bitte helft mir...... :lol: :lol:


Bedank mich jetzt schon mal......
 
Werbung:
mit html geht es nur per <form> Post daten zu versenden.
Get daten kannst du einfach an die links anhaengen.
 
sag mal lieber was du damit willst /wie du dir das genau denkst :>
 
Werbung:
ja man muss doch, um eine Funktion in das ganze reinzubringen, das Formular, mit z.B. einen PHP - Code versehen.

Oder lieg ich da falsch...??

Wisst ihr da einen.....???
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben