僅使用 PHP 進行簡單的使用者註冊
在資料庫中建立表格:
create table usuario( id integer primary key AUTO_INCREMENT, nome varchar(200) not null, sobrenome varchar(300) not null, idade integer not null, sexo char(1) not null )
在「app/conexao」資料夾中設定 Conexao.php 檔案:
在 getConexão() 函數中加入以下程式碼,如果您的資料庫是 Mysql,則它已經是預設的。
請記住根據您的銀行更改連接中的資料(資料庫名稱、使用者名稱、密碼)。
-連接到 MySql
if (!isset(self::$instance)) { self::$instance = new PDO('mysql:host=localhost;dbname=github', 'root', '', array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8")); self::$instance->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); self::$instance->setAttribute(PDO::ATTR_ORACLE_NULLS, PDO::NULL_EMPTY_STRING); } return self::$instance;
-連接到 PostgreSql
$host = 'localhost;port=5432'; $dbname = 'github'; $user = 'root'; $pass = ''; try { if (!isset(self::$instance)) { self::$instance = new \PDO('pgsql:host='.$host.';dbname=' . $dbname . ';options=\'--client_encoding=UTF8\'', $user, $pass); self::$instance->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); self::$instance->setAttribute(\PDO::ATTR_ORACLE_NULLS, \PDO::NULL_EMPTY_STRING); } return self::$instance; } catch (Exception $ex) { echo $ex.'<br>'; }
布雷揚·蒙泰羅
include_once "./app/conexao/Conexao.php";
include_once "./app/dao/UsuarioDAO.php";
include_once "./app/model/Usuario.php";
//實例化類別
$user = new User();
$usuariodao = new UsuarioDAO();
? >
以上是使用 PHP MySql Bootstrap 4 的簡單 CRUD的詳細內容。更多資訊請關注PHP中文網其他相關文章!