PHP interesse |
|
Hallo ik gebruik de volgende code:
<?php
error_reporting(E_ALL);
ini_set("display_errors", "on");
$date = date("d_m_Y", time());
require('class_shoutbox.php');
$shoutbox = new shoutbox;
$shoutbox->create();
$shoutbox->show();
$shoutbox->form();
?>
<?php require('class_shoutbox.php'); $shoutbox = new shoutbox; $shoutbox->create(); $shoutbox->show(); $shoutbox->form(); ?>
in class_shoutbox.php staat: Plaatscode: 5302
maar hellaas krijg ik een error:)
[error=php]
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in /home/vhosts/httpdocs/testmap/class_shoutbox.php on line 53
[/error]
nu snap ik dit niet omdat die ; daar gewoon hoort...
|