![]() | |||||||
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 :'( |
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. |
ahhhhhhhh wicked :D cheers been doing my head in :D |
| All times are GMT -7. The time now is 07:49 PM. |
Powered by: vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0