Nieuw lid |
|
ik heb de volgende code
<?php
error_reporting(E_ALL);
$nieuws = parse_ini_file('nieuws.ini',true);
$fopen = fopen('nieuws.ini', 'w');
if(isset($_GET['p'] == 'toevoegen')) {
if(isset($_POST['nieuwstoevoegen']))) {
$aantaloudeberichten = count($nieuws);
for($a = 1; $a < $aantaloudeberichten; $a) {
$oudnieuws = "[".$a."]\r\n".$nieuws[$aantaloudeberichten]['titel']."\r\n".$nieuws[$aantaloudeberichten]['bericht']."\r\n";
fputs($fopen, $nieuwnieuws.$oudnieuws);
fclose($fopen);
}
}
else
{
?>
<form method="post" />
naam:<br /><input type="text" name="title" /><br />
bericht:<br />
<textarea rows="5" cols="10" name="message" /><br /><br />
<input type="submit" value="nieuws toevoegen" name-"nieuwstoevoegen" />
</form>
<?php
}
}
if(isset($_GET['id'])) {
$id = $_GET['id'];
echo $nieuws[$id]['titel'] . "<br>" . $nieuws[$id]['bericht'];
}
else {
$aantal = count($nieuws);
if($aantal < 3) {
$aantal = 3;
}
for($aantalberichten = 1; $aantalberichten < $aantal; $aantalberichten++) {
echo $nieuws[$aantalberichten]['titel'] . "<br>" . $nieuws[$aantalberichten]['bericht'];
echo "<br /><br />";
}
}
?>
<?php $fopen = fopen('nieuws.ini', 'w'); if(isset($_GET['p'] == 'toevoegen')) { if(isset($_POST['nieuwstoevoegen']))) { $aantaloudeberichten = count($nieuws); for($a = 1; $a < $aantaloudeberichten; $a) { $oudnieuws = "[".$a."]\r\n".$nieuws[$aantaloudeberichten]['titel']."\r\n".$nieuws[$aantaloudeberichten]['bericht']."\r\n"; fputs($fopen, $nieuwnieuws.$oudnieuws); } } else { ?> <form method="post" /> naam:<br /><input type="text" name="title" /><br /> bericht:<br /> <textarea rows="5" cols="10" name="message" /><br /><br /> <input type="submit" value="nieuws toevoegen" name-"nieuwstoevoegen" /> </form> <?php } } $id = $_GET['id']; echo $nieuws[$id]['titel'] . "<br>" . $nieuws[$id]['bericht']; } else { $aantal = count($nieuws); if($aantal < 3) { $aantal = 3; } for($aantalberichten = 1; $aantalberichten < $aantal; $aantalberichten++) { echo $nieuws[$aantalberichten]['titel'] . "<br>" . $nieuws[$aantalberichten]['bericht']; } } ?>
maar hij werkt niet, ik krijg gewoon een leeg scherm te zien en geen error, het ligt trouwens aan het script, want als ik html toevoeg onderaan doet die het ook niet.
|