Forum Moderators: buckworks
Now, I've found something in the catalogue that looks like this:
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
<html <?php echo HTML_PARAMS;?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET;?>">
<title><?php echo TITLE;?></title>
<base href="<?php echo (($request_type == 'SSL')? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG;?>">
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
Is that the correct place to add my title and meta tags?
thanks
amy
It looks like the file you are showing is a PHP template for a database driven site.
Most likely, there is a line above what you show in your post that looks like:
include(/somefile.php);
That is the file where you would need to create your meta tags. You will need to know some PHP(and possibly MySQL) to do this, however.