Jump to content
  • 0

do while


Kup
 Share

Question

<?php
$result1 = mysql_query("SELECT id,title,description,date,author,mini_img FROM data",$db);
if (!$result1){
echo "<p>Запрос на выборку данных из базы не прошел.<strong>Код ошибки: </strong></p>";
exit(mysql_error());
}
if (mysql_num_rows($result1) > 0){
do{
printf("<div class='showsite'>айди:%s<br />тайтл:%s<br />дескрипшн:%s<br />дата:%s<br />автор:%s<br />мини имг:%s<br /></div>",$myrow1["id"],$myrow1["title"],$myrow1["description"],$myrow1["date"],$myrow1["author"],$myrow1["mini_img"]);
}
while ($myrow1 = mysql_fetch_array($result1));
}
else{
echo "<p>В таблице нет записей.</p>";
exit();
}
?>

база:

2d1098df01ef.jpg

результат:

1e862bcdab89.jpg

Не пойму почему 3 поля выводит...кто-то подскажет в чем ошибка?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Потому что вы, батенька - маньяк выражение $myrow1 = mysql_fetch_array($result1) у вас выполняется после первого прохода, и буэ ... не нужен printf

<?php
$result1 = mysql_query("SELECT id,title,description,date,author,mini_img FROM data",$db);
if (!$result1){
echo "<p>Запрос на выборку данных из базы не прошел.<strong>Код ошибки: </strong></p>";
exit(mysql_error());
}
if (mysql_num_rows($result1) > 0){
while ($myrow1 = mysql_fetch_array($result1)) {
Echo "<div class='showsite'>айди:".$myrow1['id']."<br />тайтл:".$myrow1['title']."<br />дескрипшн:".$myrow1['description']."<br />дата:".$myrow1['date']."<br />автор:".$myrow1['author']."<br />мини имг:".$myrow1['mini_img']."<br /></div>";
}

}
else{
echo "<p>В таблице нет записей.</p>";
exit();
}
?>

Link to comment
Share on other sites

  • 0

Блин, смотрю этот Попов стольких начинающих одарил своими знаниями и дурным тоном программирования, что наверное каждый второй уже сейчас супер программист по теории Евгения Попова.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy