
 Scott Zebman - 2005-11-02 06:01:06 - 
In reply to message 2 from Peter Klauer
Thank you for fixing the link.
I have tried these and it still isn't able to render the page.
I've sent you an email with a jpg screen snapshot of the page.
Just to make sure, are there any additional php modules required?
Here is a sample of the code being used to generate the page.
<html>
<head>
<title>finetable.php test</title>
</head>
<body>
<?php 
    include '/srv/www/htdocs/finetable.php';
    $panel = new ftable;
    $panel->printall();
    blanker( 100,4 );
    $panel->caption = 'This is another caption';
    $panel->printall();
    blanker( 100,4 );
    $panel->bodytext = 'Finally, I have content.';
    $panel->printall();
    blanker( 100,4 );
    $panel->captionbgcolor = '00FFFF'; // cyan
    $panel->width = '50%';
    $panel->printall();
?>
</body>
</html>
Many Thanks