PEAR PHP installation/configuration issue

emailtoarpit

New Member
Messages
20
Reaction score
0
Points
0
Hi,

I am learning PHP. However when I tried to test a script that requires connection to PEAR DB (my first encounter with PEAR) using require_once('db.php') or require_once('MDB2.php')I get the following error:

Fatal error: Class 'DB' not found in E:\xampp\htdocs\NewPHPProject\php5_david_skelar\database\dd.php on line 10.

CODE:
___________________________________________________________________________________________________
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
require('MDB2.php');

$db = DB::connect('mysql://penguin:top^hat@localhost/openx_db');



?>
</body>
</html>

___________________________________________________________________________________________________

I have a local XAMPP installtion on E: as evident from the path above. XAMPP comes with a PEAR installation by default though not sure if the PEAR installation in configured as per my local environment. I am attaching a copy of pear installation in XAMPP. i AM ALSO ATTACHING THE php.INI & pear.ini
PLEASE HELP ME RESOLVE THE ERROR AS I CANNOT CONTINUE LEARNING.
THANK YOU.

APPU.
 

Attachments

  • Pear_xampp.html
    1.1 KB · Views: 69
  • pear.ini.txt
    822 bytes · Views: 44
  • php.ini.txt
    85.3 KB · Views: 56

emailtoarpit

New Member
Messages
20
Reaction score
0
Points
0
Pls disregard the previous attachment of PEAR installation in XAMPP. Here is the proper screenshot of the PEAR installation in XAMPP.
 

Attachments

  • XAMPP 1_7_2' - localhost_PEAR.png
    XAMPP 1_7_2' - localhost_PEAR.png
    571.8 KB · Views: 42
Top