una parte de mi codigo es esto
Citar
while ($row = mysql_fetch_array($result)) {
//$found = true;
echo "(song title=@$row[2]@ path=@$row[4]@/><br>";
//$found = true;
echo "(song title=@$row[2]@ path=@$row[4]@/><br>";
pero yo queria que quede asi
Citar
while ($row = mysql_fetch_array($result)) {
//$found = true;
echo "<song title="$row[2]" path="$row[4]"/><br>";
//$found = true;
echo "<song title="$row[2]" path="$row[4]"/><br>";
al hace me sale error por "or"
yo queria que resultado seria
Citar
<song title="don omar" path="www.mihosting.com/mp3/don omar.mp3"/><br>
me olvidava que
$row[2] = igual al columna que es artist
$row[4] = url del artis , o donde esta en mp3
de remplazarer el
Citar
(por < Y @ por "
aver como aria para hacer eso se lo agradezco gente