PHP/HTML/http build query — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:05, 26 мая 2010
Building a query string with http_build_query()
<?php
$vars = array("page" => 4, "search" => "this & that");
$qs = http_build_query($vars);
$url = "http://www.example.ru/search.php?" . $qs;
$page = file_get_contents($url);
?>