for that use cURL:
eg:
PHP Code:<?php
$room = $_GET['room'];
$ch = curl_init('http://test/s.php?bd='.$room);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_USERAGENT, 'Googlebot/2.1 (http://www.googlebot.com/bot2.html)');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$text = curl_exec($ch);
curl_close($ch);
echo $text;
?>



LinkBack URL
About LinkBacks
Reply With Quote


Bookmarks