This topic is locked

Page Header

3/25/2006 6:15:47 AM
PHPRunner General questions
A
Alphomse author

if i want to add Header
sample :

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
in all page header for muiltple languages data, how can i add this in template Editor ?

D
Dale 3/25/2006

Using the template editor open the files add.php, edit.php, view.php, export.php, print.php, search and list.php.

Find the <head> sections and add any lines you wish. Save and rebuild your project.
There is also the supertop.php and superbottom.php files that you can modify and these will be included on every page, but they are inserted in the body of the html page after the <head> section is already closed.

I suppose this could be modified but the suggestion above would be the quickest.
Hope this helps

Sergey Kornilov admin 3/27/2006

Hi,
the best place to change the charset is include\dbcommon.php file.

Locate this line there:

$cCharset = "...";

and replace it with:

$cCharset = "utf-8";