I have apache2 installed on my PC.
And php5 and all the stuffs.
The php is also running fine. I checked commands INSERT INTO myTable
etc and it's working fine.
I've phpMyAdmin installed and it's also working fine.
The problem is that I'm not getting any error when there is actually error.
for e.g.
PHP :
<?php
<?php
$umair = 1
echo $umair;
echo 'asdf';
?>
This code isn't outputting anything. As you can see there is error of semicolon here and the PHP must show some error.
And if I put the semicolon then the PHP runs as usual and get the output 1asdf