PhaseV
Mitglied
Hallo zusammen,
ich hab ein kleines Problem, habe probiert einen DB-basierten Styleswitcher zu basteln, aber wenn ich meine Seite jetzt aufrufe kommt folgender fehler:
Warning: mysql_result() [function.mysql-result]: Unable to jump to row 1 on MySQL result index 6 in menu.php on line 8
Warning: mysql_result() [function.mysql-result]: Unable to jump to row 1 on MySQL result index 6 in menu.php on line 9
hier mal der Code der menu.php:
wer kann mir behilflich sein?
GreetZ SiLvErStAr2411
ich hab ein kleines Problem, habe probiert einen DB-basierten Styleswitcher zu basteln, aber wenn ich meine Seite jetzt aufrufe kommt folgender fehler:
Warning: mysql_result() [function.mysql-result]: Unable to jump to row 1 on MySQL result index 6 in menu.php on line 8
Warning: mysql_result() [function.mysql-result]: Unable to jump to row 1 on MySQL result index 6 in menu.php on line 9
hier mal der Code der menu.php:
PHP:
<?
mysql_select_db($db);
$style_query = mysql_query('SELECT * FROM styles');
$num_styles = mysql_num_rows($style_query);
for ($i=0; $i<$num_styles; $i++);
{
$style_name = mysql_result($style_query, $i, 'style_name');
$style_file = mysql_result($style_query, $i, 'style_file');
}
echo'<ul>';
echo' <li><a href="index.php" onmouseover="window.status = "Die Startseite"; return true;">Startseite</a></li>';
echo' <li><a href="index.php?section=aboutme" onmouseover="window.status = "Über mich"; return true;">Über mich</a></li>';
echo' <li><a href="chat/login.php" target="blank" onmouseover="window.status = "Zum Chat"; return true;">Chat</a></li>';
echo'</ul>';
echo'<br />';
echo'<form action='.$_SERVER['PHP_SELF'].' method="POST">';
echo' <select name="style" size="1">';
echo' <option value="'.$style_name.'">'.$style_name.'</option>';
echo' </select><br>';
echo' <input type="submit" name="styleswitcher" value="Switch">';
echo'</form>';
?>
wer kann mir behilflich sein?
GreetZ SiLvErStAr2411