Chris25Stgt
Grünschnabel
hallo zusammen mein Problem ist der Fehler
Parse error: parse error, unexpected $ in /home/www/web3/html/v1/admin/eingabe.php on line 136
wen ich inm DW auf zeille 136 gehe ist da aber keinn $
hier mal den code
<?php
if ($_SESSION["eingeloggt"] == "true"){
include ($_SERVER['DOCUMENT_ROOT']. "/v1/events/admin/protection.php");
include ($_SERVER['DOCUMENT_ROOT']. "/v1/include/dcon.php");
if((isset($_POST['bildchen'])) or (isset($_POST['bildchen']) && !empty($_POST['bild']))){
$masterok = 1;
}
if(isset($masterok)){
if(isset($_POST['senden'])) {
$datum = str_replace(array("-", ":", ",", ";"), ".", $_POST['datum']);
$ort = trim(strip_tags($_POST['ort']));
$art = trim(strip_tags($_POST['art']));
$link = trim(strip_tags($_POST['link']));
$beschreibung = nl2br(strip_tags(htmlentities($_POST['beschreibung'])));
if($_POST['bildchen'] == "url"){
$bild = trim(strip_tags($_POST['bild']));
}elseif($_POST['bildchen'] == "upload"){
$image = $_POST['Datei'];
/*****************************************************/
$uploaddir1 = 'Upload/';
print "<pre>";
if (move_uploaded_file($_FILES['Datei']['tmp_name'], $uploaddir1 . $_FILES['Datei']['name'])) {
} else {
}
$bild = $_FILES['Datei']['name'];
$bild = ("http://fabios-pizzeria.de/v1/Upload/$bild");
$bild = trim(strip_tags($bild));
}
$querydaten = "INSERT into events (datum,ort,art,beschreibung,link,bild) VALUES ('$datum', '$ort', '$art', '$beschreibung', '$link', '$bild')";
#echo "<br />$querydaten<br />";
$speichern = mysql_query($querydaten) or die(mysql_error());
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Neuen Event eingeben...</title>
<link href="http://freshmedia.eu/admin/admin.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
if(isset($_POST['senden']) && empty($_POST['bildchen'])) {
echo "Bitte wählen Sie aus, ob Sie Ihr Bild hochladen möchten, oder ob Sie eine URL angeben möchten.<br>";
}
if(isset($_POST['senden']) && ($_POST['bildchen'] == "url") && isset($_POST['bildchen']) && empty($_POST['bildchen'])) {
echo "Bitte geben Sie eine URL Ihres Bildes an.<br>";
}
if(isset($_POST['senden']) && ($_POST['bildchen'] == "upload") && isset($_POST['bildchen']) && empty($_POST['bildchen'])) {
echo "Bitte wählen Sie ein Bild aus, welches Sie hochladen möchten.<br>";
}
if ($speichern)
{
echo "Ok, Event wurde hinzugefügt!<br>";
}
?>
<br>
<form id="FormName" enctype="multipart/form-data" action="admin.php?fabios=eingabe" method="post" name="FormName">
<table border="0" cellspacing="2" cellpadding="3" width="546">
<tr>
<td colspan="3" width="550">
<center>
<b>Neuen Event eingeben:</b> </center>
</td>
</tr>
<tr>
<td width="242">Datum:</td>
<td colspan="2" width="402"><input type="text" name="datum" value="<?=$_POST['datum']?>" size="24">(im Format: <font face="Courier New, Courier, monospace"><?=date("d.m.Y", time())?></font>)</td>
</tr>
<tr>
<td width="242">Ort: </td>
<td colspan="2" width="402"><input type="text" name="ort" value="<?=$_POST['ort']?>" size="53"></td>
</tr>
<tr>
<td width="242">Art: </td>
<td colspan="2" width="402"><input type="text" name="art" value="<?=$_POST['art']?>" size="53"></td>
</tr>
<tr>
<td width="242">Beschreibung:</td>
<td colspan="2" width="402">
<textarea name="beschreibung" rows="4" cols="45"><?=$_POST['beschreibung']?></textarea></td>
</tr>
<tr>
<td width="242">Link: (mit http://) </td>
<td colspan="2" width="402"><input type="text" name="link" value="<?=$_POST['link']?>" size="53"></td>
</tr>
<tr>
<td width="242">Bild-URL: (mit http://) </td>
<td width="308"><input type="input" name="bild" size="40"></td>
<td width="86"><input type="radio" name="bildchen" value="url">entweder</td>
</tr>
<tr>
<td width="242">Bild-Upload:</td>
<td width="308">
<input type="file" name="Datei" id="uploadFile'" size="20" /></td>
<td width="86">
<input type="radio" name="bildchen" value="upload">oder</td>
</tr>
<tr>
<td width="242"></td>
<td colspan="2" width="402"><input type="submit" name="senden" value="Daten speichern"></td>
</tr>
</table>
</form>
<hr>
<a href="admin.php?fabios=events">Zur Übersicht</a>
</body></html>
}else{
echo "Sie sind nicht eingeloggt!";
}
?>
danke im voraus auf ein mal ging das nimmer hmm nja hoff einer weis was da los ist
Parse error: parse error, unexpected $ in /home/www/web3/html/v1/admin/eingabe.php on line 136
wen ich inm DW auf zeille 136 gehe ist da aber keinn $
hier mal den code
<?php
if ($_SESSION["eingeloggt"] == "true"){
include ($_SERVER['DOCUMENT_ROOT']. "/v1/events/admin/protection.php");
include ($_SERVER['DOCUMENT_ROOT']. "/v1/include/dcon.php");
if((isset($_POST['bildchen'])) or (isset($_POST['bildchen']) && !empty($_POST['bild']))){
$masterok = 1;
}
if(isset($masterok)){
if(isset($_POST['senden'])) {
$datum = str_replace(array("-", ":", ",", ";"), ".", $_POST['datum']);
$ort = trim(strip_tags($_POST['ort']));
$art = trim(strip_tags($_POST['art']));
$link = trim(strip_tags($_POST['link']));
$beschreibung = nl2br(strip_tags(htmlentities($_POST['beschreibung'])));
if($_POST['bildchen'] == "url"){
$bild = trim(strip_tags($_POST['bild']));
}elseif($_POST['bildchen'] == "upload"){
$image = $_POST['Datei'];
/*****************************************************/
$uploaddir1 = 'Upload/';
print "<pre>";
if (move_uploaded_file($_FILES['Datei']['tmp_name'], $uploaddir1 . $_FILES['Datei']['name'])) {
} else {
}
$bild = $_FILES['Datei']['name'];
$bild = ("http://fabios-pizzeria.de/v1/Upload/$bild");
$bild = trim(strip_tags($bild));
}
$querydaten = "INSERT into events (datum,ort,art,beschreibung,link,bild) VALUES ('$datum', '$ort', '$art', '$beschreibung', '$link', '$bild')";
#echo "<br />$querydaten<br />";
$speichern = mysql_query($querydaten) or die(mysql_error());
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Neuen Event eingeben...</title>
<link href="http://freshmedia.eu/admin/admin.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
if(isset($_POST['senden']) && empty($_POST['bildchen'])) {
echo "Bitte wählen Sie aus, ob Sie Ihr Bild hochladen möchten, oder ob Sie eine URL angeben möchten.<br>";
}
if(isset($_POST['senden']) && ($_POST['bildchen'] == "url") && isset($_POST['bildchen']) && empty($_POST['bildchen'])) {
echo "Bitte geben Sie eine URL Ihres Bildes an.<br>";
}
if(isset($_POST['senden']) && ($_POST['bildchen'] == "upload") && isset($_POST['bildchen']) && empty($_POST['bildchen'])) {
echo "Bitte wählen Sie ein Bild aus, welches Sie hochladen möchten.<br>";
}
if ($speichern)
{
echo "Ok, Event wurde hinzugefügt!<br>";
}
?>
<br>
<form id="FormName" enctype="multipart/form-data" action="admin.php?fabios=eingabe" method="post" name="FormName">
<table border="0" cellspacing="2" cellpadding="3" width="546">
<tr>
<td colspan="3" width="550">
<center>
<b>Neuen Event eingeben:</b> </center>
</td>
</tr>
<tr>
<td width="242">Datum:</td>
<td colspan="2" width="402"><input type="text" name="datum" value="<?=$_POST['datum']?>" size="24">(im Format: <font face="Courier New, Courier, monospace"><?=date("d.m.Y", time())?></font>)</td>
</tr>
<tr>
<td width="242">Ort: </td>
<td colspan="2" width="402"><input type="text" name="ort" value="<?=$_POST['ort']?>" size="53"></td>
</tr>
<tr>
<td width="242">Art: </td>
<td colspan="2" width="402"><input type="text" name="art" value="<?=$_POST['art']?>" size="53"></td>
</tr>
<tr>
<td width="242">Beschreibung:</td>
<td colspan="2" width="402">
<textarea name="beschreibung" rows="4" cols="45"><?=$_POST['beschreibung']?></textarea></td>
</tr>
<tr>
<td width="242">Link: (mit http://) </td>
<td colspan="2" width="402"><input type="text" name="link" value="<?=$_POST['link']?>" size="53"></td>
</tr>
<tr>
<td width="242">Bild-URL: (mit http://) </td>
<td width="308"><input type="input" name="bild" size="40"></td>
<td width="86"><input type="radio" name="bildchen" value="url">entweder</td>
</tr>
<tr>
<td width="242">Bild-Upload:</td>
<td width="308">
<input type="file" name="Datei" id="uploadFile'" size="20" /></td>
<td width="86">
<input type="radio" name="bildchen" value="upload">oder</td>
</tr>
<tr>
<td width="242"></td>
<td colspan="2" width="402"><input type="submit" name="senden" value="Daten speichern"></td>
</tr>
</table>
</form>
<hr>
<a href="admin.php?fabios=events">Zur Übersicht</a>
</body></html>
}else{
echo "Sie sind nicht eingeloggt!";
}
?>
danke im voraus auf ein mal ging das nimmer hmm nja hoff einer weis was da los ist