Well I have a WampServer installed on my WinXP box with PHP 3.5.3 and apache 2.2.17. Strangely the try catch block doesnt work, after some googling I could only find that the bug lies in eaccelerator (but phpinfo showed no trace of it).
where am i going wrong??
try{
echo "from try";
parent::conect();
}catch(Exception $e){
echo "from catch";}
My output should be
from tryfrom catch
But instead i get
from try
Fatal Error: cannot access parent:: when no class...