Nieuw lid |
|
hoi
ik heb de volgende foutmelding:
Fatal error: Cannot redeclare class nieuws in /home/srkats/domains/camping-dezaaijer.nl/public_html/test/class/nieuws.class.php on line 2
ik weet dat er dan iets 2 keer wordt opgeroepen, maar ik zou niet weten wat
<?php
include('class/nieuws.class.php');
$c = new nieuws;
if($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['reactie'])) {
$c->reageer($_GET['id'],$_POST['naam'],$_POST['bericht']);
}
?>
<?php include('class/nieuws.class.php'); $c = new nieuws; if($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['reactie'])) { $c->reageer($_GET['id'],$_POST['naam'],$_POST['bericht']); } ?>
dat is van regel 1t/m7
|