Hi, I'm trying to take my blog and render the data from it on another website. Much like an iFrame, but ultimately recreating the blog itself to give me page depth for SEO, etc. Can someone help? I know nothing about XML. But I would think there must be a script to automate this process. Thanks in advance.
You want to be very careful about duplicating content across your sites as it can easily lead to Google taking measures to reduce your SEO relevancy. SO if your goal with this is to increase your SEO then I would take that into consideration. That said, what you want to do is not that hard to do if you know some PHP. If all you want to do is provide a short bit of information on the posts (like show the titles and links) you could do this with an RSS feed on your blog (built in if you are running wordpress) and a PHP module such as Simplepie (google it). If you are trying to get the entire post into the other site, then this can be achieved with php's built in http client (CURL) or you could use Zend Framework's Zend_Http module to first read the blog post into a php variable and then parse out the parts of it you want to display on the other site using Zend_Dom and some xpath expressions.