Jump to content
php.lv forumi

while izdod tikai vienu rezūltātu


ziedinjsh

Recommended Posts

Zinu, ka tas ir smieklīgi Jums, bet man galīgi nesanāk viņu sasaistīt ar while

 

$links = array(
 while($data = mysql_fetch_array($music)){
 array('id' =>  $data['id'], 'url' => $data['link']),
}
);

 

kā savādāk var izvadīt datus iekš array??

Link to comment
Share on other sites

$links = array();

while($data = mysql_fetch_array($music)){
$links[] = array('id' => $data['id'], 'url' => $data['link']);
}

 

Tu kaut kā astronomiski nepareizi domā!!!

Edited by waplet
Link to comment
Share on other sites

ziediņ mans bija tikai piemērs.. pārtaisi viņu vnk uz savu while..

 

while($data = mysql_fetch_array($music)){
?>
<div id="soundcloud<?php echo $data['id'];//ieraksta id?>"><?php echo $data['link'];//dziesmas urlis?></div>
<?
}

ja būsi nesapisis <script> daļu tad laikam šis tev izdos playerus..

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.

Guest
Reply to this topic...

×   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.

Loading...
×
×
  • Create New...