Komisches Gästebuch Problem -Help
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
beitrag
datei
eintrag
email
entry
fehler
fehlermeldung
genannte fehlermeldung
gstebuch
insert
mache
meldung
mode
opening
test
versuchen
-
Also hier die Fehlermeldung:
Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0
Warning: Unknown: Failed opening 'C:\Programme\xampp\htdocs\Guestbook\gästebuch.php' for inclusion (include_path='.;C:\Programme\xampp\php\pear\') in Unknown on line 0
Also so eine Fehlermeldung habe ich noch nie gesehn und kapier garnit was ich falsch gemacht habe.
Hier das Script:
<html> <head> <title>Ibook v1.0</title> <style type="text/css"> BODY{ color:black; background-color: #FFFFFF; font-family: Verdana; font-size: 11px; line-height: 19px; } a { font-weight: bold; text-decoration: none; color: #191970; } a:hover { color: #0000CD; } td { font-family: Verdana; font-size: 11px; line-height: 19px; } input, textarea, select { font-family: Verdana; font-size: 11px; } table { border-width:1px; border-style: solid; border-color:#191970; background-color: #DCDCDC; } .standard{ text-decoration:none; font-size:11px; font-family:verdana, arial, serif; color:#000000; background-color: #DCDCDC; } TABLE.standard { text-decoration:none; font-size:11px; font-family:verdana, arial, serif; color:#000000; border-width:1px; border-style:solid; border-color:#000000; } TD.standard { text-decoration:none; font-size:11px; font-family:verdana, arial, serif; font-weight: bold; color:#000000; } .headline{ font-size:14px; font-family:verdana, arial, serif; font-weight: bold; color:#191970; height : 20px; } input { font-family:verdana, arial, serif; font-size: 11px; color:#000000; background-color:#F1EBD5; border-width:1px; border-color:#000000; width : 135px; font-weight : normal; } </style> </head> <body> <center> <p><a href="g?stebuch.php?typ=neu">Neuer Beitrag</a></p><p><a href="g?stebuch.php?typ=lesen">Beitr?ge Lesen</a></p><br> <?php $mode =$_GET['typ']; { if($mode == neu) { echo '<h3>Neuer Beitrag</h3>'; echo '<table border="0" cellpadding="0" cellspacing="0" width="400" height="400">'; echo '<tr>'; echo '<td>#; echo '<form action="g?stebuch.php?typ=pr?fung" method="post">'; echo 'Name: <input type="text" name="name" value="Dein Name"><br>'; echo 'Homepage: http://<input type="text" name="homepage" value="Beispiel.de"><br>'; echo 'E-mail: <input type="text" value="beispiel" name="email">@test.de<br>'; echo 'Nachricht: <textarea width="300" height="300" name="beitrag"><br>'; echo '<input type="submit" name="submit" value="Eintragen">'; echo '</form>'; echo '</td>'; echo '</tr>'; echo '</table>'; } if($mode == lesen) { include 'connect.php'; $table = "SELECT `name`, `email`, `homepage`, `nachricht` FROM `G?stebuch` "; $rower = mysql_query($table, $verbindung) or die (mysql_error()); while($row = mysql_fetch_array($rower)) echo '<table border="0" cellpadding="0" cellspacing="0" width="600">'; echo '<tr>'; echo '<td class="headline">'; echo 'G?stebuch Eintr?ge'; echo '</td>'; echo '</tr>'; echo '<tr>'; echo '<td align="middle" valign="middle">'; echo '<table border="0" cellpadding="0" cellspacing="0" width="400">'; echo '<tr>'; echo '<td>ID:</td>'; echo '<td>$row["id"]</td>'; echo '</tr> echo '<tr>'; echo '<td>Name:</td>'; echo '<td>$row["name"]</td>'; echo '</tr>'; echo '<tr>'; echo '<td>E-Mail:</td>'; echo '<td>$row["email"]</td>'; echo '</tr>'; echo '<tr>'; echo '<td>Homepage:</td>'; echo '<td>$row["homepage"]</td>'; echo '</tr>'; echo '<td>Nachricht:</td>'; echo '<td>$row["nachricht"]</td>'; echo '</tr>'; echo '</table>'; echo '</td>'; echo '</tr>'; echo '</table>'; } elseif($mode == pr?fung) { include 'connect.php'; $name =$_POST['name']; $homepage =$_POST['homepage']; $email =$_POST['email']; $beitrag =$_POST['beitrag']; $sql = "INSERT INTO G?stebuch(name, email, homepage, nachricht) VALUES ('$name', '$email', '$homepage', '$beitrag')"; $eintrag = mysql_query($sql) or die (mysql_error()); if($eintrag == true) { echo 'Hallo, du hast dich erfolgreich ins G?stebuch eingetragen.'; } else { echo 'Ein Fehler ist aufgetreten'; } } } ?> </body> </html>
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0
Warning: Unknown: Failed opening 'C:\Programme\xampp\htdocs\Guestbook\gästebuch.php' for inclusion (include_path='.;C:\Programme\xampp\php\pear\') in Unknown on line 0
Versuch mal, die Datei gaestebuch.php zu nennen. PHP kann glaube ich kein ?,?,?. -
So das ausgeben klappt aber es kommt immer noch
die im letzen Beitrag genannte Fehlermeldung
wenn ich noch einen Eintrag mache -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage