update : 2015.11.03
php.shukuma.com검색:
|
mysqli::preparemysqli_prepare(PHP 5) mysqli::prepare -- mysqli_prepare — Prepare an SQL statement for execution 설명객체 기반 형식 절차식 형식 Prepares the SQL query, and returns a statement handle to be used for further operations on the statement. The query must consist of a single SQL statement. The parameter markers must be bound to application variables using mysqli_stmt_bind_param() and/or mysqli_stmt_bind_result() before executing the statement or fetching rows. 인수
반환값
mysqli_prepare() returns a statement object or 예제Example #1 mysqli::prepare() example 객체 기반 형식
<?php 절차식 형식
<?php 위 예제들의 출력: Amersfoort is in district Utrecht 참고
|