php - Why am I getting an error in this code? -
here's code: http://pastebin.com/uvixyhk1
this error get: parse error: syntax error, unexpected ';', expecting ')' in blog.php on line 32
anybody have idea?
you need change line
<?php if( $c < 4 ) : ($dummy= $c; $dummy < 5; $dummy++;) : ?>
to
<?php if( $c < 4 ) : ($dummy= $c; $dummy < 5; $dummy++) : ?>
notice had semi-colon in for() loop
Comments
Post a Comment