update : 2015.11.03
php.shukuma.com검색:
|
mysqli_stmt::preparemysqli_stmt_prepare(PHP 5) mysqli_stmt::prepare -- mysqli_stmt_prepare — Prepare an SQL statement for execution 설명객체 기반 형식 절차식 형식 Prepares the SQL query pointed to by the null-terminated string query. 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.
인수
반환값
성공 시 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제들의 출력: Amersfoort is in district Utrecht 참고
|