ich bin zu zeit völlig verzweifelt, ich weiss einfach nicht warum mein script "store.php" meine variablen aus der "config.php" nicht übernimmt.
es wird nur der titel richtig angezeigt.
hier zuerst meine config.php:
<?php
//Server einstellungen
//host
$host = "localhost";
//user
$user = "vision";
//password
$pass = "201789";
//datenbank
$dbname = "kopfkult";
//tabellenname
$tbname = "news";
//tabellen einstellungen
//titel
$tibgcolor = "#003388";
$tifsize = "3";
$tifcolor = "#ffcc00";
//datum
$dabgcolor = "#003388";
$dafsize = "3";
$dacolor = "#dddddd";
//text
$tebgcolor = "#002266";
$tefsize = "3";
$tefcolor = "#ffcc00";
//author
$aubgcolor = "#003388";
$aufsize = "2";
$aufcolor = "#ffcc00";
?>
und nun noch der wichtige teil der store.php (include ist vohanden !):
while ($rows = mysql_fetch_row($result2))
{
//globale variablen
global $tibgcolor, $tifsize, $tifcolor;
global $dabgcolor, $dafsize, $dafcolor;
global $tebgcolor, $tefsize, $tefcolor;
global $aubgcolor, $aufsize, $aufcolor;
//start der tabelle
echo ("<center><table width='90%' border='0' cellspacing='0' cellpadding='1'>");
//erste zeile titel und datum
echo ("<tr><td bgcolor='$tibgcolor'><font size='$tifsize' color='$tifcolor'><b>$rows[0]</b></td><td bgcolor='$dabgcolor'><div align='right'><font size='$dafsize' color='$dafcolor'>$rows[3]</font></div></td></tr>");
//zweite zeile der newstext
echo ("<tr><td colspan='2' bgcolor='$tebgcolor'><font size='$tefsize' color='$tefcolor'>$rows[1]</font></td></tr>");
//dritte zeile author
echo ("<tr><td colspan='2' bgcolor='$aubgcolor'><font size='$aufsize' color='$aufcolor'><div align='right'><font size='2'>eingetragen von: <a href=mailto:$rows[4]>$rows[2]</a></font></div></font></td></tr>");
//ende der tabelle
echo ("</table></center>\n<br>\n");
}
bitte helft mir ich weiss einfach nicht weiter !!!
tschö stefan
es wird nur der titel richtig angezeigt.
hier zuerst meine config.php:
<?php
//Server einstellungen
//host
$host = "localhost";
//user
$user = "vision";
//password
$pass = "201789";
//datenbank
$dbname = "kopfkult";
//tabellenname
$tbname = "news";
//tabellen einstellungen
//titel
$tibgcolor = "#003388";
$tifsize = "3";
$tifcolor = "#ffcc00";
//datum
$dabgcolor = "#003388";
$dafsize = "3";
$dacolor = "#dddddd";
//text
$tebgcolor = "#002266";
$tefsize = "3";
$tefcolor = "#ffcc00";
//author
$aubgcolor = "#003388";
$aufsize = "2";
$aufcolor = "#ffcc00";
?>
und nun noch der wichtige teil der store.php (include ist vohanden !):
while ($rows = mysql_fetch_row($result2))
{
//globale variablen
global $tibgcolor, $tifsize, $tifcolor;
global $dabgcolor, $dafsize, $dafcolor;
global $tebgcolor, $tefsize, $tefcolor;
global $aubgcolor, $aufsize, $aufcolor;
//start der tabelle
echo ("<center><table width='90%' border='0' cellspacing='0' cellpadding='1'>");
//erste zeile titel und datum
echo ("<tr><td bgcolor='$tibgcolor'><font size='$tifsize' color='$tifcolor'><b>$rows[0]</b></td><td bgcolor='$dabgcolor'><div align='right'><font size='$dafsize' color='$dafcolor'>$rows[3]</font></div></td></tr>");
//zweite zeile der newstext
echo ("<tr><td colspan='2' bgcolor='$tebgcolor'><font size='$tefsize' color='$tefcolor'>$rows[1]</font></td></tr>");
//dritte zeile author
echo ("<tr><td colspan='2' bgcolor='$aubgcolor'><font size='$aufsize' color='$aufcolor'><div align='right'><font size='2'>eingetragen von: <a href=mailto:$rows[4]>$rows[2]</a></font></div></font></td></tr>");
//ende der tabelle
echo ("</table></center>\n<br>\n");
}
bitte helft mir ich weiss einfach nicht weiter !!!
tschö stefan
Kommentar