Home > Backend Development > PHP Tutorial > MYsqli binding insert and query examples, mysqli examples_PHP tutorial

MYsqli binding insert and query examples, mysqli examples_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 10:23:53
Original
1033 people have browsed it

MYsqli binding insert and query examples, mysqli examples

<?<span>php
    </span><span>$conn</span> = <span>new</span> mysqli('localhost','root','','orders'); <span>//</span><span>连接</span>
    <span>$prepare</span> = "insert into t100 values (?,?,?)";<span>//</span><span>预设插入sql</span>
    <span>$bind</span> = <span>$conn</span>->prepare(<span>$prepare</span><span>);
    </span><span>$t1</span> = <span>NULL</span><span>;
    </span><span>$t2</span> = 'Www'<span>;
    </span><span>$t3</span> = <span>date</span>('Y-m-d H:i:s'<span>);
    </span><span>$bind</span>->bind_param('iss',<span>$t1</span>,<span>$t2</span>,<span>$t3</span>); <span>//</span><span>绑定
    //注意iss:
    //i为int,s为string类型;意思是强制这几个参数的类型</span>
    <span>$bind</span>->execute();<span>//</span><span>执行</span>

    <span>$prepare</span> = "select * from t100"; <span>//</span><span>准备要查询的语句</span>
    <span>$bind</span> = <span>$conn</span>->prepare(<span>$prepare</span>);<span>//</span><span>预处理</span>
    <span>$t1</span> = 10<span>;
    </span><span>$bind</span>->execute();<span>//</span><span>执行</span>
    <span>$bind</span>->bind_result(<span>$id</span>, <span>$name</span>, <span>$date</span>);<span>//</span><span>将字段列绑定到变量上</span>
    <span>$bind</span>->store_result();<span>//</span><span>获取结果集</span>
    <span>while</span> (<span>$bind</span>->fetch()){<span>//</span><span>遍历</span>
        <span>printf</span>("%d == %s == %s<br />",<span>$id</span>,<span>$name</span>,<span>$date</span>);<span>//</span><span>输出</span>
    }
Copy after login

How to implement data query function after binding data in Gridview?

string cmdText="select * from table where field == queried data"
SqlConnection con = new SqlConnection(ConnString);

SqlDataAdapter sda = new SqlDataAdapter(cmdText, con);
DataSet dt = new DataSet();
sda.Fill(dt);
this.GridView1.DataSource = dt.table[0];//dt.DefaultView();
this.GridView1. DataBind();
You try it, I usually write binding like this.

How to use PHP to bind data in HTML Example Contribute all solutions

Isn’t it just pagination? If you have one, I can give it to you
462626946

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/833846.htmlTechArticleMYsqli binding insert and query examples, mysqli examples? php $conn = new mysqli('localhost','root ','','orders'); // Connect $prepare = "insert into t100 values ​​(?,?,?)"; // Default insertion s...
Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template