so easy,好像用dbconnect还是什么,如果要一直连接是用那个pconnect吧,有几年不搞了,忘了。
最好自己查看php的手册,有现成的例子可以拷贝。

解决方案 »

  1.   

    U must not use MyODBC, U need only edit php.ini to active the php supporting for mysql at back of ';Windows Extensions'But if your php is so new that MySQL and ODBC support is now built in, so no dll is needed for it in php.Following,U can operator My sql with php's function for mysql.
    Certainly,U may not change them. :)the following is something about mysql in php.ini,cer
    [MySQL]
    ; Allow or prevent persistent links.
    mysql.allow_persistent = On; Maximum number of persistent links.  -1 means no limit.
    mysql.max_persistent = -1; Maximum number of links (persistent + non-persistent).  -1 means no limit.
    mysql.max_links = -1; Default port number for mysql_connect().  If unset, mysql_connect() will use
    ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
    ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
    ' at MYSQL_PORT.
    mysql.default_port =; Default socket name for local MySQL connects.  If empty, uses the built-in
    ; MySQL defaults.
    mysql.default_socket =; Default host for mysql_connect() (doesn't apply in safe mode).
    mysql.default_host =; Default user for mysql_connect() (doesn't apply in safe mode).
    mysql.default_user =; Default password for mysql_connect() (doesn't apply in safe mode).
    ; Note that this is generally a *bad* idea to store passwords in this file.
    ; *Any* user with PHP access can run 'echo cfg_get_var("mysql.default_password")
    ; and reveal this password!  And of course, any users with read access to this
    ; file will be able to reveal the password as well.
    mysql.default_password =
      

  2.   

    Sorry ,some error
    should be:Following,U can operator My sql with php's function for mysql.the following is something about mysql in php.ini
    Certainly,U may not change them. :)