Mailinglisten-Archive |
hi > function PostToHost($host, $path, $data_to_send) > > $fp = fsockopen($host,80); > fputs($fp, "POST $path HTTP/1.1\n"); > fputs($fp, "Host: $host\n"); > fputs($fp, "Content-type: application/x-www-form-urlencoded\n"); > fputs($fp, "Content-length: ".strlen($data_to_send)."\n"); > fputs($fp, "Connection: close\n\n"); > fputs($fp, $data_to_send); > while(!feof($fp)) > > echo fgets($fp, 128); > } > fclose($fp); > } > > PostToHost("www.sms.de","/privat/send.php3","message=$message&action=send&ne > tworkkey=+&number=$number"); > > Folgende Fehlermeldungen werden dabei ausgegeben: > > Warning: Supplied argument is not a valid File-Handle resource in > /web/sites/343/smsspeed/www.smsspeed.f2s.com/sendsms.php on line 5 erweiter als erstes mal die fsockopen fkt um die error Vars und lass sie dir mal ausgeben .. laut fehlermeldung bekommst du nämlich überhaupt keine connection ... und dann ersetze mal das \n durch ein \r\n .... das war bei mir mal ein aufhänger .... und mach mal erst HOST , und dann POST .... cu tobias www.traffic-eye.de
php::bar PHP Wiki - Listenarchive