Lid |
|
Hallo iedereen,
Ik ben hier bezig aan een nieuwsbriefsysteempje maar het werkt niet, en ik zou ook niet weten wat er aan scheelt, hij geeft deze error:
Parse error: parse error, unexpected $ in nieuwsbriefadmin2/briefsturen.php on line 81
--> 81 is de laatste lijn
Iemand een idee??
<?php
session_start();
if (!isset($_SESSION["ingelogd"])){
header ("Location: inloggen.php");
die();
}
else{
?>
<html>
<head><title>Nieuwsbrief versturen </title></head>
<body>
<?php
if(isset($_POST["bericht"]) || isset($_post["titel"])){
?>
De mail werd verstuurd naar:<br>
<TABLE WIDTH="90%" BORDER="1" CELLPADDING="2">
<TR>
<TD>Id:</TD>
<TD>Naam:</TD>
<TD>Emailadres:</TD>
<td>Datum Inschrijving:</td>
</TR>
<?php
$titel = $_post["titel"];
$bericht = $_post["bericht"];
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
mysql_connect("********","*****","*****");
mysql_select_db("********");
$query="SELECT * FROM nieuwsbrieftest ORDER BY id ASC";
$sql=mysql_query($query) or die (mysql_error());
while ($obj=mysql_fetch_object($sql)) {
$id = $obj->id;
$naam = $obj->naam;
$email = $obj->mail;
$datum = $obj->datum;
if (mail($email, $titel, $bericht, $headers)){
?>
<TR>
<TD><?php echo $id; ?></TD>
<TD><?php echo $naam; ?></TD>
<TD><?php echo $email; ?></TD>
<td><?php echo $datum; ?></td>
</TR>
</table>
</body>
</html>
<?php
}
else{
?>
</table><p> Er is iets fout gegaan bij de verzending.<br>
<?php };
}
}
else{
?>
<form method="post">
titel:<input type="text" name="titel"><br>
bericht: <input type="text" name="bericht"><br>
<input type="submit" value="Versturen">
</form>
<php
}
}
?>
<?php if (!isset($_SESSION["ingelogd"])){ header ("Location: inloggen.php"); } else{ ?> <html> <head><title>Nieuwsbrief versturen </title></head> <body> <?php if(isset($_POST["bericht"]) || isset($_post["titel"])){ ?> De mail werd verstuurd naar:<br> <TABLE WIDTH="90%" BORDER="1" CELLPADDING="2"> <TR> <TD>Id:</TD> <TD>Naam:</TD> <TD>Emailadres:</TD> <td>Datum Inschrijving:</td> </TR> <?php $titel = $_post["titel"]; $bericht = $_post["bericht"]; $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $query="SELECT * FROM nieuwsbrieftest ORDER BY id ASC"; $id = $obj->id; $naam = $obj->naam; $email = $obj->mail; $datum = $obj->datum; if (mail($email, $titel, $bericht, $headers)){ ?> <TR> <TD> <?php echo $id; ?></TD> <TD> <?php echo $naam; ?></TD> <TD> <?php echo $email; ?></TD> <td> <?php echo $datum; ?></td> </TR> </table> </body> </html> <?php } else{ ?> </table><p> Er is iets fout gegaan bij de verzending.<br> <?php }; } } else{ ?> <form method="post"> titel:<input type="text" name="titel"><br> bericht: <input type="text" name="bericht"><br> <input type="submit" value="Versturen"> </form> <php } } ?>
|