I am trying to add a bbClone counter (http://bbclone.de) to weblog.php
My ISP gave me the following code for this;
<?php
define(“_BBCLONE_DIR”, “/content/StartupHostPlus/s/t/www.stockting.com/web/bbclone/”);
define(“COUNTER”, _BBCLONE_DIR.“mark_page.php”);
if (is_readable(COUNTER)) include_once(COUNTER);
?>
when I tru to load the page Safari always comes back with a T_String Error on line_x - being the line that starts “define….”
I am I violating some principle of pMachinePro?
If you go to this example from my site you can see that the problem is not on the site; it is with weblog.php
Does anyone have any suggestions - because I do not know what a T_STRING is..;-((
Thanks in advance..
——————————————————<example.php code>——————————————————
<?php
//***** COPY THE LINES OF TEXT BELOW INTO YOUR PAGES. MAKE SURE YOU ENCLOSE THE TEXT WITHIN PHP TAGS *****
define(“_BBCLONE_DIR”, “/content/StartupHostPlus/s/t/www.stockting.com/web/bbclone/”);
define(“COUNTER”, _BBCLONE_DIR.“mark_page.php”);
if (is_readable(COUNTER)) include_once(COUNTER);
?>
<html>
<head>
<title>Example Counter Page</title>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1”>
</head>
<body bgcolor=”#FFFFFF” text=”#000000”>
This is a test page. <br><br>
If you look at this page in a text editor you will see the bit of code you will need<br>
to add to the top of your pages in order for them to be counted by the BBClone software.
<br><br><a href=’/bbclone/’>Click here to view stats</a>
</body>
</html>
