From: [EMAIL PROTECTED] Operating system: RedHat Linux v7.0.1/j PHP version: 4.0.4pl1 PHP Bug Type: Scripting Engine problem Bug description: Parse error with ($i%2) ? echo '':echo'' Miner parser bug. PHP4.0.4pl1 on my Linux (PHP is running as Apache 1.3.17 module) gives parse error with following code. <tr class=<?php ($i % 2) ? echo('even') : echo('odd') ?>> This one works as expected <tr class=<?php ($i % 2) ? print('even') : print('odd') ?>> Hope this helps. --- Yasuo Ohgaki === SOURCE BEGIN ==== <html> <head> <title>test</title> <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP"> <link rel="stylesheet" href="../lib/css/std.css"> <style type="text/css"> <!-- .odd { background: #CCCCFF} .even { background: #CCCCCC} --> </style> </head> <body bgcolor="#FFFFFF"> <table width="80%" border="2" cellspacing="1" cellpadding="1"> <?php for ($i = 0; $i < 100; $i++) { ?> <!-- <tr class=<?php if ($i % 2 == 0) echo('even'); else echo('odd'); // OK?>> --> <!-- <tr class=<?php ($i % 2) ? print('even') : print('odd'); // OK ?>> --> <tr class=<?php ($i % 2) ? echo('even') : echo('odd'); // NOT OK ?>> <td>@</td> <td>@</td> </tr> <?php } // END for( ) loop ?> </table> </body> </html> ==== END SOURCE ==== -- Edit Bug report at: http://bugs.php.net/?id=9576&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]