Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

cara memasukkan nilai textbox ke database mysql menggunakan konsep php oops ketika diklik tombol Submit

Ini adalah bentuk htmlnya

<body>
<form action="process.php" method="post">
Name : <input type ="text" name = "Name"/>

Number  :<input type ="text" name = "Number"/>
<input type ="submit" value = "submit" name="submit"/>

</form>
</body>

File php yang berisi kelas ini diberi nama db.php

<?php
class db
{
    public $host;
    public $user;
    public $pass;
    public $data;
    public $con;
    public $table;
    function db()
    {
        $this->host="localhost";
        $this->user="usern";
        $this->pass="passwrd";
        $this->data="dbname";   
    }   
    public function connect()
    {
        $this->con=mysql_connect($this->host,$this->user,$this->pass);
        if(!$this->con)
        {
            echo mysql_error();
        }
        $sel=mysql_select_db($this->data, $this->con);
        if(!$sel)
        {
            echo mysql_error();
        }
    }
    public function insert($name,$number)
    {
        $sql=mysql_query("INSERT INTO tablename(name, number) VALUES('$name', '$number')");
        if(!$sql)
        {
            echo mysql_error();
        }
    }
}
?>

Skrip ini untuk file php yang Anda tentukan di atribut "action" dari formulir html Anda, saya beri nama "process.php"

<?php
    include'db.php';
    $name=$_POST['Name'];
    $num=$_POST['Number'];
    $n=new db();
    $n->connect();
    $n->insert($name,$num);
?>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Berikan izin tabel dan kolom MySQL

  2. Memperbarui kolom MySQL yang berisi titik (.) dalam namanya

  3. Menghubungkan program python ke mysql dengan aman

  4. Menekan Peringatan PDO

  5. MySql Tambahkan Indeks :0 Baris Terpengaruh