Jump to content
  • 0

Создание многомерного массива из БД


bgraf
 Share

Question

Здравствуйте!

Подскажите как создать многомерный массив из БД.

К примеру таблица состоит из id, small_img, big_img, description

small_img big_img это varchar там только путь к картинкам.

Мне надо получить многомерный массив , который будет содержать все эти данные в себе.

Спасибо!

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Нужны все записи из табицы?

php


$sql = "SELECT * FROM `imya_tablici`";
$result = mysql_query($sql) or die(mysql_error());
$arr = mysql_fetch_array($result)

в результате получаем многомерный массив из всех записей в данной таблице

Edited by Avalon4eg
Link to comment
Share on other sites

  • 0

Нужны все записи из табицы?

php


$sql = "SELECT * FROM `imya_tablici`";
$result = mysql_query($sql) or die(mysql_error());
$arr = mysql_fetch_array($result)

в результате получаем многомерный массив из всех записей в данной таблице

Спасибо. а что делать если нужны будут не все данные, а выборочно?

Link to comment
Share on other sites

  • 0

в запрос добавьте критерй

к примеру


$sql = "SELECT `small_img`, `big_img,` FROM `imya_tablici` WHERE `id` = 'kakoeto_znahenie'"

выберет из базы поля small_img и big_img записи с определенным id

Может я что-то не понял но по вашему примеру


$arr=array();
$sql="SELECT * FROM db_table";
$result=mysql_query($sql);
$arr = mysql_fetch_array($result);

массив $arr[0][1] к примеру ничего не содержит

Link to comment
Share on other sites

  • 0

Подскажите я только так смог, может есть проще? функция какая?


$arr=array();

while($res = mysql_fetch_array($result))
{
$arr[] = array($res['small_img'],$res['big_img'],$res['des_img']);
}


while($res = mysql_fetch_array($result))
{
$arr[] = $res;
}

Link to comment
Share on other sites

  • 0

Подскажите я только так смог, может есть проще? функция какая?


$arr=array();

while($res = mysql_fetch_array($result))
{
$arr[] = array($res['small_img'],$res['big_img'],$res['des_img']);
}


while($res = mysql_fetch_array($result))
{
$arr[] = $res;
}

Простите разобрался. Ассоциативный массив получается да?

чтобы не открывать новую тему, подскажите а как заполнить многомерный JavaScript массив из БД ?

Edited by bgraf
Link to comment
Share on other sites

  • 0

Подскажите я только так смог, может есть проще? функция какая?


$arr=array();

while($res = mysql_fetch_array($result))
{
$arr[] = array($res['small_img'],$res['big_img'],$res['des_img']);
}


while($res = mysql_fetch_array($result))
{
$arr[] = $res;
}

Простите разобрался. Ассоциативный массив получается да?

чтобы не открывать новую тему, подскажите а как заполнить многомерный JavaScript массив из БД ?

Можно собрать его в тексте страницы при выводе, а можно, что гораздо удобнее, получить его через json

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