AddType application/x-httpd-php .php
AddType application/x-httpd-php .php4
[...]
Die Endung ".php" oder ".php4" werden von PHP (x-httpd-php) bearbeitet. Siehst Du da was von .php3 ? Nein, siehste Wenn Du da also noch ne Zeile "AddType application/x-httpd-php .php3" einfuegen wuerdest, dann wurde es auch gehen. Oder "AddType application/x-httpd-php .stonki", dann werden alle Dateien die mit ".stonki" enden als PHP File interpretiert...
soweit war mir das schon klar! hehe..
aber ich dachte eben, dass das hier das ist:
# PHP 3.x:
#
<IfModule mod_php3.c>
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php3 .phtml
</IfModule>
scheint nicht so zu sein? naja, egal, jedenfalls gehts
Zu Deinem anderen Problem:
Ich verstehe Dich nicht Endwhile benoetigt ja immer ein "While". Siehe auch hier:
http://uk.php.net/while schon klar, es gibt ja auch ne while schleife!
also ich lerne gerade
und hab das aus nem buch abgetippt
hier das ganze:
<?php
if(isset($pos)==0)
$pos=0;
$count=20;
mysql_connect("localhost","forum","test.");
mysql_select_db("forum")
?>
<HTML>
<HEAD>
<TITLE>Gästebuch</TITLE>
</HEAD>
<BODY>
<H1>
<center>Forum anzeigen</center><H1><center>
<table border="0" cellspacing="0" width="100%">
<form action="forumshow.php" method="post">
<input type="Hidden" name="go" value="1">
<tr>
<td>
<center><h1>Forum</h1></center>
</td>
</tr>
<tr>
<td>
<table border="0" align="center">
<tr>
<td>Name: </td>
<td><input type="text" name="name"></td>
</tr>
<tr>
<td>Email: </td>
<td><input type="text" name="email"></td>
</tr>
<tr>
<td valign=top>Forumbeitrag: </td>
<td><textarea name="beitrag" cols="40" rows="10"> </textarea></td>
</tr>
<tr>
<TD COLSPAN="2" ALIGN="CENTER"><input type="submit" value="Abschicken"></td>
</tr>
</table>
</td>
</tr>
</form>
<tr>
<td>
<table border="0" align="center" width="400">
<?php
if ($go==1) {
if ($name=="" || $email=="" || $beitrag=="") {
?>
<?php
} else {
$datum=date("Y-m-d");
mysql_query("INSERT INTO gb (name,email,datum,beitrag) VALUES ('$name','$email','$datum','$beitrag')");
}
}
$an_id=mysql_query("SELECT name,email,datum,beitrag FROM gb ORDER BY forumid LIMIT $pos,$count");
while ($zeile=Mysql_fetch_array($an_id));
$name=htmlspecialchars($zeile["name"]);
$email=htmlspecialchars($zeile["email"]);
$datum=$zeile["datum"];
$beitrag=$zeile["beitrag"];
$beitrag=htmlspecialchars($beitrag);
$beitrag=n12br($beitrag);
?>
</table></tr>
<td colspan=2>
<br>Name: <?php echo $name; ?> Datum: <?php echo $datum; ?> <br> Email: <a href='mailto:<?php echo $email; ?'><?php echo $email; ?></a><p>
<?php echo $beitrag; ?>
</td>
</tr>
<?php
endwhile;
?>
<tr>
<TD WIDTH="50%" Align="left"> <p>
<?php
if ($pos=0);
?>
<A href="forumshow.php?pos=<?php echo $pos-$count;?>">zurück</a> <? php endif; ?>
</td>
<TD width="50%" align="right">
<?php
if(mysql_num_rows($an_id)>=$pos+$count);
?>
<a href="forumshow.php?pos=<?php echo $pos+$count;?>">vor</a><?php endif; ?>
</td>
</tr>
</table>
</center>
</h1></h1></body>
</html>
<?php
mqsql_close();
?>
<?
phpinfo();
?>
[/code]hehe, das wäre das nächste was ich mal gefragt hätte
PHP Version 4.1.0 hab ich installiert...