FREE THOUGHT · FREE SOFTWARE · FREE WORLD

Use php.ini to replace html with anything

What to include?

By including a php file using php.ini, you can replace the headers in your html with dynamic headers.

Include a php file that contains a function to replace html with different html. You include a file from your php.ini like auto_prepend_file /web/askapache.com/config.php?


config.php example from: Effective way to update your blog's header scripts




';

$quantcast = '



';

$mybloglog = '

';

$pages	= array(); // Add pages (relative to the public site root) that should be ignored
$ip		= array(); // Add IP addresses that should be ignored, for instance you don't want to track yourself or your company's visit to your blog.

if (
	strpos($page,'frameset') !== false ||
	(!empty($ip) && in_array($_SERVER['REMOTE_ADDR'], $ip)) ||
	(!empty($pages) && in_array((isset($_SERVER['PHP_SELF']) && !empty($_SERVER['PHP_SELF']))?$_SERVER['PHP_SELF']:$_SERVER['SCRIPT_NAME'], $pages))
	)
{ return $page; }
$replace = array
	(
		'',
		''
	);
	return str_replace($replace, "n{$googleAnalytics}nn{$quantcast}nn{$mybloglog}r", $page);
}
ob_start("Config");
?>

php.ini

auto_prepend_file

Specifies the name of a file that is automatically parsed before the main file. The file is included as if it was called with the include() function, so include_path is used. The special value none disables auto-prepending.

auto_append_file

Specifies the name of a file that is automatically parsed after the main file. The file is included as if it was called with the include() function, so include_path is used. The special value none disables auto-appending.

Note: If the script is terminated with exit(), auto-append will not occur.

PHP

 

 

Comments