Table of Contents
PHP form data is written into MySQL code, and PHP form is written into mysql
Home Backend Development PHP Tutorial PHP form data is written into MySQL code, and PHP form is written into mysql_PHP tutorial

PHP form data is written into MySQL code, and PHP form is written into mysql_PHP tutorial

Jul 12, 2016 am 08:51 AM
html form

PHP form data is written into MySQL code, and PHP form is written into mysql

<h1>插入操作</h1>  
<?<span>php  
    </span><span>if</span>(!<span>isset</span>(<span>$_POST</span>['submit'<span>])){  
        </span><span>//</span><span>如果没有表单提交,显示一个表单  </span>
?>  
    <form action="" method="post"><span>  
    国家:</span><input type="text" name="country" /><span>  
    动物名称(英文):</span><input type="text" name="animal" /><span>  
    动物名称(中文):</span><input type="text" name="cname" />  
    <input type="submit" name="submit" value="提交表单" />  
    </form>  
<?<span>php  
    }  
    </span><span>else</span><span>  
    {  
        </span><span>//</span><span>如果提交了表单  
        //数据库连接参数  </span>
        <span>$host</span> = "localhost"<span>;  
        </span><span>$user</span> = "root"<span>;  
        </span><span>$pass</span> = "zq19890319"<span>;  
        </span><span>$db</span> = "phpdev"<span>;  
         
        </span><span>//</span><span> 何问起 hovertree.com
        //取得表单中的值,检查表单中的值是否符合标准,并做适当转义,防止SQL注入  </span>
        <span>$country</span> = <span>empty</span>(<span>$_POST</span>['country'])? <span>die</span>("请输入国家名称"):  
        <span>mysql_escape_string</span>(<span>$_POST</span>['country'<span>]);  
        </span><span>$animal</span> = <span>empty</span>(<span>$_POST</span>['animal'])? <span>die</span>("请输入英文名"):  
        <span>mysql_escape_string</span>(<span>$_POST</span>['animal'<span>]);  
        </span><span>$cname</span> = <span>empty</span>(<span>$_POST</span>['cname'])? <span>die</span>("请输入中文名"):  
        <span>mysql_escape_string</span>(<span>$_POST</span>['cname'<span>]);  
          
        </span><span>//</span><span>打开数据库连接  </span>
        <span>$connection</span> = <span>mysql_connect</span>(<span>$host</span>, <span>$user</span>, <span>$pass</span>) or <span>die</span>("Unable to connect!"<span>);  
          
        </span><span>//</span><span>选择数据库  </span>
        <span>mysql_select_db</span>(<span>$db</span>) or <span>die</span>("Unable to select database!"<span>);  
          
        </span><span>//</span><span>构造一个SQL查询  </span>
        <span>$query</span> = "INSERT INTO symbols(country, animal, cname) VALUE('<span>$country</span>', '<span>$animal</span>', '<span>$cname</span>')"<span>;  
          
        </span><span>//</span><span>执行该查询  </span>
        <span>$result</span> = <span>mysql_query</span>(<span>$query</span>) or <span>die</span>("Error in query: <span>$query</span>. ".<span>mysql_error</span><span>());  
          
        </span><span>//</span><span>插入操作成功后,显示插入记录的记录号  </span>
        <span>echo</span> "记录已经插入, mysql_insert_id() = ".<span>mysql_insert_id</span><span>();  
          
        </span><span>//</span><span>关闭当前数据库连接  </span>
        <span>mysql_close</span>(<span>$connection</span><span>);  
    }  
</span>?> 
Copy after login

Reference: http://www.cnblogs.com/roucheng/p/phpmysql.html

The above code uses different formats, I don’t know which format is better

  1. Insert operation

  2.  if(!isset($_POST['submit' ])){
  3. //If no form is submitted, display a form
  4. ?>
  5. "" method="post">
  6. Country: "text" name="country" />
  7. Animal name (English): "text" name="animal" />
  8. Animal name (Chinese): "text" name="cname" />
  9. "submit" name="submit" value="submit Form" />
  10. }
  11. else
  12. {
  13. //If the form is submitted
  14. //Database connection parameters
  15. $host = "localhost";
  16. $user = "root";
  17. $pass = "zq19890319";
  18. $db = "phpdev";
  19.  
  20. //Get the value in the form, check whether the value in the form meets the standards, and escape it appropriately to prevent SQL injection
  21.  $country = empty($_POST[ 'country'])? die("Please enter the country name"):
  22. mysql_escape_string($_POST['country']);
  23.  $animal = empty($_POST[ 'animal'])? die("Please enter your English name"):
  24. mysql_escape_string($_POST['animal']);
  25.  $cname = empty($_POST[ 'cname'])? die("Please enter your Chinese name"):
  26. mysql_escape_string($_POST['cname']);
  27.  
  28. //Open the database connection hovertree.com He asked
  29.  $connection = mysql_connect($host, $user, $pass) or die("Unable to connect!");
  30.  
  31. //Select database
  32. mysql_select_db($db) or die( "Unable to select database!");
  33.  
  34. //Construct a SQL query
  35.  $query = "INSERT INTO symbols(country, animal, cname) VALUE('$country', '$animal', '$cname ')";
  36.  
  37.  //Execute the query 
  38. $result = mysql_query($query) or die("Error in query: $query. ".mysql_error());
  39.  
  40. //After the insertion operation is successful, the record number of the inserted record is displayed
  41.  echo "The record has been inserted, mysql_insert_id() = ".mysql_insert_id();
  42.  
  43. //Close the current database connection
  44. mysql_close($connection);
  45. }
  46. ?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1130484.htmlTechArticlePHP form data is written into MySQL code, and php form is written into mysql h1 insert operation/h1? php if (! isset ( $_POST ['submit' ])){ // If no form is submitted, display a form? form action="...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

See all articles