ID: 27040 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Closed Bug Type: cURL related Operating System: * PHP Version: 4CVS, 5CVS New Comment:
Fixed in CVS. Previous Comments: ------------------------------------------------------------------------ [2004-01-25 18:58:05] [EMAIL PROTECTED] Description: ------------ Using variable works, using plain array doesn't. Reproduce code: --------------- <?php $ch = curl_init('http://www.cs.tut.fi/cgi-bin/run/~jkorpela/echo.cgi'); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_POSTFIELDS, array ('field1'=>'1','field2'=>'2')); $result = curl_exec($ch); var_dump($result); curl_close($ch); ?> Expected result: ---------------- string(463) "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en-US"> <head> <title>Echoing submitted form data</title> </head> <body> <h1 style="font-size:1.2em">Echoing submitted form data</h1> <table border="1" cellspacing="0"> <tr><th align="left" nowrap><tt>field1</tt></th><td nowrap><tt>1</tt></td></tr> <tr><th align="left" nowrap><tt>field2</tt></th><td nowrap><tt>2</tt></td></tr> </table> <p>Processed 2004-01-26T00:01Z </p></body></html>" Actual result: -------------- The field values appear as 'Z' ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=27040&edit=1