Small mistake on the previous post...
"<a href=\"$row['$facilities']\"><img src=\"button.gif\"></a>";
should have been
"<a href=\"$row['reservations']\"><img src=\"button.gif\"></a>";
If i'm getting you right, you want to have a button image link for campgrounds that have a website and if they don't have a website then you just want to have a blank space. Am i correct?
So what i'm saying is you don't need to include the image path or anything about the image in the database. More about this later...
By looking at your page
http://www.texascampingforum.com/2006/index.php?page=parks/results, the reservations column will store the address of the parks reservation page. If the park doesn't have an address then i'm going to assume you will just store an empty value in the database for that particular park.
The code below checks the reservation column. If it's empty then it will just print a blank space " ". If there is a value then it will print a button image linking to the park reservation website.
if ($row['reservations'] == "") {
$reservations = ' ';
} else {
$reservations = "<a href=\"$row['$reservations']\"><img src=\"button.gif\"></a>";
}
So if this is what you want to do then you don't need to store the image path for (button.gif) in the database. Just put it where you put the rest of your graphics. If you want to change the button later, you'll only have to change button.gif to a different name.
I can't think of any good reason why you'd need to have any image data in the database unless you want to have a different button image for each park.