Re: [PHP] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' ....

2012-02-01 Thread Darryle Steplight
n Wed, Feb 1, 2012 at 6:44 PM, Matijn Woudt wrote: > On Wed, Feb 1, 2012 at 6:56 PM, Darryle Steplight > wrote: >> Hello Everyone, >>    My name is Darryle. I've installed PHP 5.3.9 on my CentOs box and >> some numerous modules via yum. Some of those modules are  PDO, &g

[PHP] PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_pdo_mysql' ....

2012-02-01 Thread Darryle Steplight
Hello Everyone,    My name is Darryle. I've installed PHP 5.3.9 on my CentOs box and some numerous modules via yum. Some of those modules are  PDO, PDO_MYSQL and PDO_SQLITE. However, my PHP configuration is not recognizing my PDO_MYSQL module.  I can verify that these modules exists by looking in m

Re: [PHP] Re: catch the error

2009-02-26 Thread Darryle Steplight
Additionally regarding the error handling , add this to the op of your script. ini_set("display_errors","true"); error_reporting(E_STRICT|E_ALL); and post the output of your error message. On Thu, Feb 26, 2009 at 1:40 PM, Ashley Sheridan wrote: > On Thu, 2009-02-26

[PHP] Re: catch the error

2009-02-26 Thread Darryle Steplight
Hi PJ, $db_host = 'biggie'; $db_user = 'root'; $db_pass = 'gu...@#$'; $db_name = 'biblane'; Everyone here is trying to help you and that's cool, but EVERYONE on this list may not be so nice. The above credentials is definitely the type of information you want to keep private, unless you don't

[PHP] Re: catch the error

2009-02-26 Thread Darryle Steplight
ok, well if that's the case then do this $db = mysql_connect('biggie', 'user', 'password', 'test'); That should fix the problem. On Thu, Feb 26, 2009 at 12:46 PM, PJ wrote: > It is commented out because I am using "mysql_connect" > I don't think it would be good to use both, since the db1

[PHP] Re: catch the error

2009-02-26 Thread Darryle Steplight
Hi PJ, Could it be that you have "//include ("lib/db1.php"); " commented out? Try uncommenting that line and see what happens. The error message will always print because the query is never executing properly if you have the db connections file commented out. On Thu, Feb 26, 2009 at 12:28 PM,