I'm running into a problem that I can only interpret as a PHP limit. I am using the following code:
$filename="blahblahblah.extension";
$fp=fopen ($page,'r');
Now, this works find and dandy ecept for when the filename I want to use is a long one. I am pulling files off an intranet so I often have long filenames. When it is long, I get the following error:
Warning: fopen("blahblahblah.extension","r") - No error in c:/my websites/public/hau/buy/display.php on line 37
So, is there a way to increase the maximum number of characters that fopen will use as a filename? Thanks for any help or suggestions.