Re: Question in posting form-data

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Yao, Minghua wrote:
Hi, all,

I am testing how to post form-data to a host using the following code (test.php):

<?php
        function PostToHost($host, $path, $name, $value) {  // Test of posting form-data
  		$fp = fsockopen($host,80);  		

  		fputs($fp, "POST $path HTTP/1.1\n");
  		fputs($fp, "Host: $host\n");
  		fputs($fp, "Content-Type: multipart/form-data\n");
 		fputs($fp, "content-disposition: form-data; name=$name\n");
  		fputs($fp, "Connection: close\n\n");

  		fputs($fp, "$value\n");

  		$res = "";
		while(!feof($fp)) {
      		$res .= fgets($fp, 128);
  		}
  		
  		fclose($fp);

  		return $res;
	}

Check your function carefully. Where are you using the $name of the value?

Nowhere! Therefore the receiving script cannot identify the value as x.

Try: fputs($fp, "$name=$value\n");



Erwin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux