Hallo !
Ich habe ein kleines Verständniss Problem! Ich habe in einer Mysql Datenbank eine Tabelle mit Longtext Information. In der Tabelle steht die Info richtig drin sprich mit Absatz und nächste Zeile nur bei der ausgabe wird alles hintereinander geschrieben.
Was ist falsch!
Ausgabe
Danke!
Ich habe ein kleines Verständniss Problem! Ich habe in einer Mysql Datenbank eine Tabelle mit Longtext Information. In der Tabelle steht die Info richtig drin sprich mit Absatz und nächste Zeile nur bei der ausgabe wird alles hintereinander geschrieben.
Was ist falsch!
PHP-Code:
$rs = MYSQL_QUERY("SELECT Distinct
ID,
text
FROM * where
(text like '%$suche') and
text like '%'
order by id");
Ausgabe
PHP-Code:
$i =0; // Zählvariable
$i=$i+$wo;
while ($row = mysql_fetch_row($rs)){
echo "$row[1]";}
Kommentar