$url="http://www.scubanaked.com/checklist_cus ... ogin=brian"]
$webfile = fopen("$url", "r")
Errors because of the arguments
in a nutshell
Brian Kempe
info@scubanaked.com
Moderator: General Moderators
Code: Select all
<?php
$url='http://www.scubanaked.com/checklist_custom.php?login=brian';
$webfile = fopen($url, 'r');
while($part = fread($webfile, 1024))
echo $part;
?>