Originally Posted by
mutago
This fix the problem
I loaded all pdo_mysql module in the php.ini at root directory
At php.ini enable output_buffering by setting it to on or value 4096
or programmatically embed it on every first line of the php
<?php ob_start(); ?>
and the last or very bottom of the page
<?php ob_end_flush(); ?>
The settles the whole thing. I can now enjoy PDO
Thanks all. You guys are great. Am still working on other PDO codes and will get back should any thing goes wtong
You guys are great