Hallo leute
Leider spinnt mein mysql/php news system ein wenig ...... und ich tüftel schon eine ganze weile rum woran es ligt
db.php
PHP
<?php
function db_connect()
{
mysql_connect( 'localhost', 'root', '');
mysql_select_db( 'news' );
}
?>
index.php
PHP
<div id="news">
<h1>News</h1>
<hr>
<?php
require ( 'admintool/db.php' );
$result = mysql_query("SELECT Text FROM news WHERE id = '1'");
echo mysql_result($result,0,0);
?>
<hr>
<hr>
<?php
require ( 'admintool/db.php' );
$result = mysql_query("SELECT Text FROM news WHERE id = '2'");
echo mysql_result($result,0,0);
?>
<hr>
<hr>
<?php
require ( 'admintool/db.php' );
$result = mysql_query("SELECT Text FROM news WHERE id = '3'");
echo mysql_result($result,0,0);
?>
<hr>
</div>
Alles anzeigen
leider sieht die div so aus
http://s1.directupload.net/file/d/3147/2pe4yymy_png.htm
ich hoffe ihr könnt mir helfen