View Single Post
  #3 (permalink)  
Old 2008-05-06, 07:31 AM
strasm strasm is offline
Senior Member
 
Join Date: Dec 2004
Posts: 199
strasm is an unknown quantity at this point
Default

Why no curly braces? I think that is the problem. Try putting your code this way:

Code:
<?php 

if ($ore == 0){ 
  echo ''; 
}else{ 
  echo '<td bgcolor="#484848" align="center" width="120"><b> ' . 
    include("name.php") . 
    '</b></td>';
}
?>

Last edited by strasm; 2008-05-06 at 07:35 AM.
Reply With Quote