View Single Post
Old 02-09-2013, 07:31 AM  
TheDA
Confirmed User
 
Industry Role:
Join Date: May 2006
Posts: 4,665
Quick Code Help Please?

I have a problem with Arylia gallery builder where relative URL's for the banners on gallery pages do not display on some browsers.

As a quick fix for future gallery builds I want to mod the code to do away with relative URL and put in the absolute instead.

I think I am looking at the correct point, so where can I include http://www.domain.com instead, what is the correct syntax?

Code:
while($startPos = strpos($page, "__HTMLBANNER__")) {
		if(isset($banners[$position])) {
			switch($bannerTypes[$position]) {
				case "text":

					$page = substr_replace($page, '<a'.$sponsorBlank.' href="'.$linkCodes[$position].'"><? include $_SERVER["DOCUMENT_ROOT"]."'.$banners[$position].'" ?></a>', $startPos, 14);
					break;
				
				case "html":

					$page = substr_replace($page, '<? include $_SERVER["DOCUMENT_ROOT"]."'.$banners[$position].'" ?>', $startPos, 14);
					break;

				default:

					$page = substr_replace($page, '<a'.$sponsorBlank.' href="'.$linkCodes[$position].'"><img border="0" src="'.$banners[$position].'"></a>', $startPos, 14);
					break;
			}
		} else {
			$page = substr_replace($page, '', $startPos, 14);
		}
		$position ++;
	}
TheDA is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote