sorry für doppelpost!
Klappt leider nicht !
Also habe alles hochgeladen aber es kommt auf meiner seite (http://www.freakmartin.dl.am )
Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
Also hier sind die Dateien (die constant.php datei zeige ich nicht weil da mein Pass und so ist )
index.php
<?php
error_reporting(E_ALL);
include "config.php"; // die Konfigurationsdateien lesen.
// Verbindung zu MySQL Aufbauen
@mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASS) OR die(mysql_error());
mysql_select_db(MYSQL_DATABASE) OR die(mysql_error());
?>
Alles anzeigen
config.php
<?php
include 'constant.php';
include 'variablen.php';
//include 'functions.php';
// wir haben keine eigenen Funkionen
?>
news.php
<?php
// news.php
echo "<h2>News</h2>\n";
$sql = "SELECT
Titel,
Inhalt,
Datum
FROM
News
ORDER BY
Datum DESC";
$result = mysql_query($sql) OR die(mysql_error());
if(mysql_num_rows($result)) {
while($row = mysql_fetch_assoc($result)) {
echo "<div class=\"newseintrag\">\n";
echo " <div class=\"Datum\">\n";
echo $row['Datum'];
echo " </div>\n";
echo " <div class=\"Titel\">\n";
echo $row['Titel'];
echo " </div>\n";
echo " <div class=\"Inhalt\">\n";
echo nl2br($row['Inhalt']); // \n in
umwandeln
echo " </div>\n";
echo "</div>\n";
}
} else {
echo"
Keine News vorhanden</p>\n";
}
?>
Alles anzeigen
Ich hoffe ihr könnt mir helfen danke ...
[b]//edit: hatte ein paar Fehler und habe sie ausgelöscht aber er kann sich immer noch nicht connecten ... immer die gleiche meldung wie oben ..