I am new to php and I am trying to write the cross tab query for mysql using PHP. I constantly keep getting errors like PHP Parse error: syntax error, unexpected T_STRING in /home/sushvedula/cross.php on line 5
Kindly help.
This is my code.
<?php
$db->Connect('localhost','root','********','pack_00001');
for($i=0;$i<5;$i++)
for($j=0;$j<24;$j++)
select timestamp,
group_concat(if(module=$i and block=$j,voltage,0)) as $v$i_$j
from block_voltages
group by timestamp;
?>
Thanks in advance.