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

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -