Hi,
Finally, I installed mysql and php successfully. The mysql commands line run well and 
phpinfo(); gives me information.
To do a test to run with php script, I wrote the following script in test.php:
******* Beginning *******
<?php
#Le serveur auquel l'utilisateur peut accéder;
$host="localhost";
# Nom de l'utilisateur;
$user="root";
#Mot de passe de connexion;
$password="";
mysql_connect($host,$user,$password);
mysql_select_db(mysql);
$requete='select * from mysql.user';
$resultat=mysql_query($requete);
mysql_fetch_row($resultat);
?>

******* End *******
Can you help me resolve the error message below?
Think you in advance!
Error message after running test.php:
PHP: Error parsing c:\inetpub\wwwroot\browscap.ini on line 8206 Cannot find module 
(IP-MIB):
At line 0 in (none) Cannot find module (IF-MIB): At line 0 in (none) Cannot find module
(TCP-MIB): At line 0 in (none) Cannot find module (UDP-MIB): At line 0 in (none) 
Cannot find
module (SNMPv2-MIB): At line 0 in (none) Cannot find module (SNMPv2-SMI): At line 0 in
(none) Cannot find module (UCD-SNMP-MIB): At line 0 in (none) Cannot find module
(UCD-DEMO-MIB): At line 0 in (none) Cannot find module (SNMP-TARGET-MIB): At line 0
in (none) Cannot find module (SNMP-VIEW-BASED-ACM-MIB): At line 0 in (none) Cannot
find module (SNMP-COMMUNITY-MIB): At line 0 in (none) Cannot find module
(UCD-DLMOD-MIB): At line 0 in (none) Cannot find module (SNMP-FRAMEWORK-MIB):
At line 0 in (none) Cannot find module (SNMP-MPD-MIB): At line 0 in (none) Cannot find
module (SNMP-USER-BASED-SM-MIB): At line 0 in (none) Cannot find module
(SNMP-NOTIFICATION-MIB): At line 0 in (none) Cannot find module (SNMPv2-TM): At
line 0 in (none)



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to