Photoblog encoding
From Photostand Wiki
photoblog_encoding()
The photoblog_keywords function will return the encoding value that you defined when you installed PhotoStand or that you defined in the administration of your photoblog. It can be used in any file, at any time.
Its main function is to fill the <meta> tag for the encoding of the photoblog. See below for an example.
[edit]
Parameters
This function has no parameters.
[edit]
Examples
In the <meta> tag
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>My photoblog</title>
<meta http-equiv="Content-Type" content="<?php echo photoblog_encoding(); ?>" />
</head>
<body>
Content
</body>
</html>
Here, your photoblog endcoding will be generated in the <meta> tag, which is not visible, but that the visitor's browser will interprate.

