But lets see what i got atm.
I have what you have atm. It actually prints explode( and it dones't actually perform the function. I was trying to figure out why but kept getting parse errors. Seems my extreme newbyness is catching up to me
$sql = "SELECT * FROM users where user='$name'";
$result = mysql_query($sql) or die(mysql_error());
while($arr = mysql_fetch_array($result))
{
$pics[] = $arr["add_picts"];
}
foreach($pics as $picid)
{
echo 'Print HTML for '.join('<br />', explode(',', $picid)).'<br />";
}
Thanks so much for your help
Code: Select all
<?php
?>Code: Select all
<?php
?>