Hello mailing list, I try to connect SQL server through PEAR directly, but it doesn't work too, this is the code: <html><head><title>Test DB Class - PEAR</title></head> <body> <table border=1> <tr><th>Estado</th></tr> <?php //connect require_once('DB.php'); $db =DB::connect("mssql://[EMAIL PROTECTED]/videoclub"); if (DB::iserror($db)) { die($db->getMessage()); } //issue the query $sql ="SELECT * from tablaEstado"; $q =$db->query($sql); if (DB::iserror($q)) { die($q->getMessage()); } //generate table while ($q->fetchInto($row)) { ?> <tr><td><?= $row[0] ?></td></tr> <?php } ?> </table> </body></html>
this is the output DB Error: extension not found If any could give me hand, I will aprecciate, thanks, bye. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php