I’m building a website for a housing developer. They have an XML doc on their server which is updated once daily, I use a small php script to update this the same way as cron would and all is well there, the XML file updates just fine. Using a tutorial I found on Disqus have managed to create an add.php file which takes the XML feed and updates a MySQL database, again, this seems to work just fine. Given the time constraints and my lack of php experience I don’t feel comfortable building a database driven website but, because the house/property type prices regularly change, I would like to use a snippet from the database that displays the up-to-date price within the text of the page. Each house type has a unique ID so this snippet would need to reference that (but not display it). In addition to that the database obviously needs to be updated so do I/how do I incorporate that when the specific property page is loaded in the browser?
Any help will be most appreciated.