Connecting to mysql using php

前端 未结 6 1494
逝去的感伤
逝去的感伤 2020-12-18 17:46

Here is my following tutorial code from \"Learning PHP MYSQL and Javascript\" by OReilly.



        
6条回答
  •  渐次进展
    2020-12-18 18:19

    Stop using mysql_connect()!

    You should not use this or other related functions related to this extension.

    It's depreciated and removed in PHP 7.0.0 and beyond. An alternative is using PDO or MySQLi. Below is an example script for connecting to MySQL using PDO:

    getMessage();
      }
    
    ?>
    

提交回复
热议问题