Multiply photos
$value) {
$value = urlencode(stripslashes($value));
$query .= "&$key=$value";
}
// --------------------------------------------------------------------------------------------------------------------------
// This is where the page is actually gotten from the EZLinkSystemserver.
// There are 3 ways a file can be gotten, and they are tried in the order of most likely supported to least-likely supported.
// --------------------------------------------------------------------------------------------------------------------------
if(intval(ini_get('allow_url_fopen')) && function_exists('readfile')) {
if(!@readfile("http://www.EZLinkSystem.com/linkpage.php?".$query)) {
echo "Error processing request";
}
}
elseif(intval(ini_get('allow_url_fopen')) && function_exists('file')) {
if(!($content = @file("http://www.EZLinkSystem.com/linkpage.php?".$query))) {
echo "Error processing request";
}
else {
echo @join('', $content);
}
}
elseif(function_exists('curl_init')) {
$ch = curl_init ("http://www.EZLinkSystem.com/linkpage.php?".$query);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_exec ($ch);
if(curl_error($ch))
echo "Error processing request";
curl_close ($ch);
}
else {
echo "The web page will not display as curl and fopen are not enabled. Please contact your web hosting service and ask for one of these php options to be enabled.";
}
// ----------------------------------------------------------------------------------------
// You can add more html code from here to the tag to insert code below the links.
// ----------------------------------------------------------------------------------------
?>