I have (what I think is an awesome HTML page). I want to integrate the person's Facebook feed into the HTML page, but I don't want their stupid white and blue iframe box they give. The site is here.
I haven't ever made much with PHP but found a way to pull a feed from Facebook using PHP. It's on a separate page.
As I understand you can't embed PHP into HMTL directly. I'd like to pull the output of the php page and put it under //News from Facebook - but am unsure how.
I even created an index.php page if you add index.php to the end of the first link I gave.
but still can't get it to populate. I'm good with HTML but a n00b at PHP. How can I integrate the two? I just want the output to appear under //News from facebook
I already have some items in an htaccess file based on links I found online - but they don't seem to help:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*)\.htm$ $1.html [NC]
AddType application/x-httpd-php .php .htm .html
AddHandler application/x-httpd-php5 .html .php .htm
Thoughts? Please be gentle. I haven't found any similar articles, and reading on PHP hasn't yet covered how to integrate the two how I need.