I just downloaded the PHP script blog and have several problems with the syntax used in it.
When this code occurs, there are several cases:
<?=$miniblog_posts?>
Now it does nothing. To make it work, I have to change it to this.
<?php echo $miniblog_posts; ?>
This is an old way of writing php that is no longer supported, or I'm missing something.
I am running PHP V5.3.1
source share