I'm finally figuring out how php works. Albeit very slowly. But I am stuck on how to get this to work.
I have a MySql database (which I stumbled through and finally figured out how to make it work), with a field called "mls". I want the value of that mls field to populate in an img url on a php page. Example:
<img width='340' height='255' src='http://www.mywebpage.com/photos/albums/09-9878/09-9878a.jpg" border='0'>
So, my mls value is 09-9878, and I want to populate this value in the img url.
<img width='340' height='255' src='http://www.mywebpage.com/photos/albums/mls/mlsa.jpg" border='0'>
since the album is always an mls number, and I don't want to hard code every one into my php web page, or have to manually change it in my database.
Does anyone have any suggestions? I'd really appreciate it.