Quote:
Originally Posted by juanph
SKINVB
You have to
require the script first
then print show
I hope you understand that.
Baptizer....
I got the same thing...my solution...don't use online_external.php.
Instead use online.php
It took me a little bit but it worked...
ceck it out in my footer.
http://www.s3squad.com
|
Yup, I concur
It worked on my site as well...I added the require_once bit at the very top of my HTML page (even before the <html> tag) then, wherever I wanted to display the online info I just added the print command. Basically the code on your page 'should' look like:
<?php require_once('/path/to/script'); ?>
<html>
<head>
</head>
<body>
....
(somewhere on your page you may now add

<?php print $show ?>
Of course you have to name your page something like index.php (the extension is what matters here)
Hope that made it clear to everyone. Oh and yes, I am using online.php