alt=".htmlspecialchars($row['artist'])." title=".htmlspecialchars($row['artist']).">";That's the code for them currently. It only takes the first word from the field though! How can I get it to take everything from that field?
Thanks
Posted 22 August 2006 - 07:26 AM
alt=".htmlspecialchars($row['artist'])." title=".htmlspecialchars($row['artist']).">";That's the code for them currently. It only takes the first word from the field though! How can I get it to take everything from that field?
Posted 22 August 2006 - 11:35 AM
$artist = htmlspecialchars($row['artist']); alt=".$artist." title=".$artist.">";
Posted 22 August 2006 - 01:10 PM
venomsnake, on Aug 22 2006, 12:34 PM, said:
$artist = htmlspecialchars($row['artist']); alt=".$artist." title=".$artist.">";
alt=".$artist."
$artist = $row['artist']; alt=\"$artist\" title=\"$artist\">";
Posted 22 August 2006 - 02:42 PM
Posted 22 August 2006 - 06:08 PM
0 members, 1 guests, 0 anonymous users