Thread
:
Simple? Get result from http: in PHP
View Single Post
#
2
(
permalink
)
07-10-03, 10:23 AM
BdSBB
Newbie Coder
Join Date: Jun 2003
Location: Georgetown, TX
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
You could try
fopen
() function.
PHP Code:
$fh
=
fopen
(
'http://server.com/cgi-bin/qdir?fm=X&uid=myuid'
,
'r'
);
fpassthru
(
$fh
);
fclose
(
$fh
);
__________________
-- BdSBB
BdSBB
View Public Profile
Find all posts by BdSBB