From 76cde35f15d3ff8c0850502523400dff57612287 Mon Sep 17 00:00:00 2001 From: Sara Golemon <pollita@php.net> Date: Mon, 29 Sep 2003 21:15:40 +0000 Subject: [PATCH] Typo git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@141266 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/stream/reference.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/stream/reference.xml b/reference/stream/reference.xml index 6ebd637215..f08a4e09ec 100644 --- a/reference/stream/reference.xml +++ b/reference/stream/reference.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.16 $ --> +<!-- $Revision: 1.17 $ --> <reference id="ref.stream"> <title>Stream functions</title> <titleabbrev>Streams</titleabbrev> @@ -206,7 +206,7 @@ $data = "foo=" . urlencode("Value for Foo") . "&bar=" . urlencode("Value for Bar fputs($sock, "POST /form_action.php HTTP/1.0\r\n"); fputs($sock, "Host: secure.example.com\r\n"); -fputs($sock, "Content-type: application/x-www-url-encoded\r\n"); +fputs($sock, "Content-type: application/x-www-form-urlencoded\r\n"); fputs($sock, "Content-length: " . strlen($data) . "\r\n"); fputs($sock, "Accept: */*\r\n"); fputs($sock, "\r\n");