In the index.html there is PHP code that will not run if you have a properly configured web server. Either rename the file to index.php or replicate the functionality in javascript:
<?php
if(!empty($instagram_array)){
foreach($instagram_array['data'] as $key=>$image){
echo '<img src="'.$image['images']['low_resolution']['url'].'" alt=""/><br/>';
}
}
?>
In general, mixing PHP and HTML should be avoided, instead using templates or javascript for the dynamic content.
Also in the same file, the form target should be bin/geogram.php.
In the
index.htmlthere is PHP code that will not run if you have a properly configured web server. Either rename the file toindex.phpor replicate the functionality in javascript:In general, mixing PHP and HTML should be avoided, instead using templates or javascript for the dynamic content.
Also in the same file, the form target should be
bin/geogram.php.