hey can someone help me Debug the following php code pls
[php]<?xml version = "1.0" encoding = "utf-8"?>
debug.php <?php $count =1; While {$count <=100){ if ($count % 2) print "****
" else print "++++++++
"; count ++; } ?> [/php]hey can someone help me Debug the following php code pls
[php]<?xml version = "1.0" encoding = "utf-8"?>
debug.php <?php $count =1; While {$count <=100){ if ($count % 2) print "****
" else print "++++++++
"; count ++; } ?> [/php]You are missing a semi-colon after the first Print line…
That should fix it…