Hi all,
I've got a path returning like so:
/www/site.com//images/inventoryimage_0425200309042257
This is $file_dir.$query_row[image] being returned. I want to have the // come back as /.
I can't figure out this syntax. So far I have
$path = ereg_replace("[//]", "/", $path);
echo $file_dir.$query_row[image];