NamePros.Com (http://www.namepros.com/)
-   Programming (http://www.namepros.com/programming/)
-   -   fopen (http://www.namepros.com/programming/15442-fopen.html)

adam_uk 10-23-2003 02:26 PM

fopen
 
hey anyone ever had nightmares with this?

i am at the moment

basically im stuck

what does "resource ID #3" mean anyone?

ive got this peice of code
$page = $_GET['page'];
if($page ==""){
$handle = fopen ("D:\bin\Apache\htdocs\1\welcome.inc.php", "r");
}else{
$inc = ".inc.php";
$handle = fopen ("D:\bin\Apache\htdocs\1\$page$inc", "r");
}

EDIT: i woulda stuck it in php but it took some of my code away :S

and it chucks out that error the path is correct :'( all i wanna do is open it then echo it :'(

deadserious 10-25-2003 11:41 PM

Hey I'm not exactly sure what the resource id 3 means, but I think it's something to do with you're attempting to print some output without ever reading the file or attempting to open nothing or something along those lines.

Something like this should work:

$page = $GET['page'];
if($page ==""){
$handle = fopen ("D:\bin\Apache\htdocs\1\welcome.inc.php", "rb");
$contents = fread ($handle, filesize ("D:\bin\Apache\htdocs\1\welcome.inc.php"));
fclose ($handle);
}else{
$inc = ".inc.php";
$handle = fopen ("D:\bin\Apache\htdocs\1\$page$inc", "rb");
$contents = fread ($handle, filesize ("D:\bin\Apache\htdocs\1\$page$inc"));
fclose ($handle);
}
?>

Then you should be able to output $contents.

adam_uk 10-26-2003 04:33 AM

ahhhhhhhh wicked :D cheers


been doing my head in :D


All times are GMT -7. The time now is 07:49 PM.
Site Sponsors
Advertise your business at NamePros

Powered by: vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0