Jump to content
  • 0

Помогите решить проблемму mysql_fetch_array()


er@s
 Share

Question

У меня такая проблемма. Создал я работающую страницу, скопировал из нее часть кода в другую и в ней он пишет:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in T:\home\localhost\site\index.php on line 8

Сам код такой:

$ind1 = mysql_query("select * from index");
while ($ind1_array = mysql_fetch_array($ind1)) {
printf ("<table width='80%'><tr><td>\n<div class='news'>\n<h3>%s</h3>\n<p>%s</p>", $ind1_array["name"], $ind1_array["text"]);
}

Не подскажете что делать?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0
Проблема в том, чтоб слово index зарезервированное в sql/ смените имя таблицы. А еще лучше вывести mysql_error

Спасибо, помогло. Но теперь вылазиет такое сообщение:

Warning: printf() [function.printf]: Too few arguments in T:\home\localhost\site\index.php on line 10

Сам код я немного изменил, но не думаю, что в этом дело:

$ind1 = mysql_query("select * from main_page");
$ind1_array = mysql_fetch_array($ind1);
printf ("<table width='80%'><tr><td>\n<div class='news'>\n<h3>%s</h3>\n<p>%s</p>", $ind1_array['title'], $ind1_array['text']);

Как мне быть?

Link to comment
Share on other sites

  • 0

Тут очень много проблем может быть. Не подключился к базе, неправильно составил запрос, выбрал ноль записей.

если подключился к базе попробуй так:

$ind1 = mysql_query("SELECT * FROM `main_page`") or die("mysql error:".mysql_error());
$ind1_array = mysql_fetch_array($ind1);
echo "<table width='80%'><tr><td>\n<div class='news'>\n<h3>%s</h3>\n<p>%s</p>", $ind1_array['title'], $ind1_array['text'];

Edited by haZe
Link to comment
Share on other sites

  • 0

Заработало наконец. Правдв пришлось переустановить сервер на другой диск. Может это виста со своими правами администратора? В итоге код сделал такой:

$ind1 = mysql_query("SELECT * FROM `main_page`");
$ind1_array = mysql_fetch_array($ind1);
echo "<table width='80%'><tr><td>\n<div class='news'>\n<h3>".$ind1_array['title']."</h3>\n<p>".$ind1_array['text']."</p>";

Всем спасибо, кто помогал мне

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