|
|
#1 (permalink) |
|
Registered User
Seasoned Poster
Joined in Apr 2004
49 posts
Gave thanks: 0
Thanked 0 times
|
php blank page
I recently had php and the OS reinstalled on my server and the following code that used to work now just shows a blank white page:
<? $id = "1"; $view = "gallery"; /* DO NOT EDIT BELOW THIS LINE */ $get_string = ""; foreach ($HTTP_GET_VARS as $key => $value) $get_string .= "&" . rawurlencode ($key) . "=" . rawurlencode ($value); readfile ("http://bellavitaphoto.net/gallery/display.php?id=$id&view=$view$get_string");?> I assume something needs to be changed in the php.ini file to get this to work again? Any ideas? |
|
|
|