I have a Table where i want to Display time someone has worked. This comes from a mySql a Field should Display the minutes, and if a other field ist true, then it should be add "high" after the minutes
I tried this:
Print "<td width=50px>";
PRINT $info['minutes'] if($info['high'] == 0 ) {echo "Hoch"} ;
and got this:
Parse error: syntax error, unexpected 'if' (T_IF) in C:\xampp\htdocs\callinfo.php on line 63
Someone can Help? :)