Det lyder da umiddelbart som lidt af et fejl design at have det hele i et felt af databasen, men hvad med:
<?
$songsql = mysql_query(sprintf("SELECT `song_title`, `song_author` FROM `songs` WHERE `id` = '$id'")) or die(sprintf('Cannot execute query: %s', mysql_error()));
while($songrow = mysql_fetch_assoc($songsql))
$authors=explode(', ', $songrow['song_authos']);
foreach(explode(', ', $songrow['song_title']) as $key=>$title)
{
echo $authors[$key];
?>
<div id='songNum1' style='background-color:#252525; width:250px; height:36px; margin-bottom:3px; -moz-border-radius: 5px; -webkit-border-radius: 5px;'>
<div style='cursor:default;' title='Track Buffering'>
<span id='title'><b><?=$title?></b></span><br>
<span style='font-size:11px; font-weight:normal; color:#cccccc;'><?=$title?></span>
</div>
<div style='position:relative; z-index:1; width:20px; height:20px; left:270px; top:-30px; padding:7px 0px;'>
<div id="songListenBt1" style="display: none;">
<span id="playBut1"></span>
</div>
</div>
</div>
<?
}
?>
</div>
Virker kun hvis der er en 1 til 1 sammenhøng mellem de to felter.
Indlæg senest redigeret d. 24.03.2010 19:48 af Bruger #5620