Ich hab mit ein buch gekauft mit php5 und mysql. In dem buch zeigt er wie man ein forum macht. es ist nur ein kleines und das wollte ich mal versuchen. mein 1tes problem ist diese fehlermeldung: Fatal error: Cannot use object of type stdClass as array in forum\index.php on line 21
das ist bei der zeile:
das problem ist in der forum.php erstelle ich eine neues forum und die schreibt mit nichts in die datenbank rein.
forum.php:
forum_eintragen.php:
kann mit mal jemand sagen wo der fehler ist?
Mit freundlichen Grüßen
Martin
das ist bei der zeile:
PHP-Code:
<?php echo urlencode($row["id"]);?>">
forum.php:
PHP-Code:
<html>
<head><TITLE>Forum</TITLE>
<link rel="StyleSheet" type="text/css" href="style.css"/> </head>
<BODY>
<a href="index.php"class="textlink">zur Startseite</a><br />
<br />
<h2>Neus Forum erstellen</h2>
<p>Bitte füllen Sie das Formular aus</p>
<form action="forum_eintragen.php" method="get">
<table border="0" cellspacing="5">
<tr>
<td>Name</td>
<td><input type="text" name="name"></td>
</tr>
</table>
<table><input type="submit" value="Forum erstellen" />
</table>
</form>
</BODY>
</html>
PHP-Code:
<?php
include('include.php');
$name=$_GET["name"];
mysql_query("INSERT INTO foren (name) VALUES ('$name')");
header("Location: index.php");
?>
Mit freundlichen Grüßen
Martin
Kommentar