PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.4Mb
HTML Download (TGZ)
- 251.4Kb
HTML Download (Zip)
- 258.8Kb
Copyright 1997-2021 the PHP Documentation Group.
mysqli_stmt::__construct
Constructs a new
mysqli_stmt
object
Description
public mysqli_stmt::__construct(mysqli link,
string query);
This method constructs a new mysqli_stmt
object.
Parameters
-
link
Procedural style only: A link identifier returned by
mysqli_connect
ormysqli_init
-
query
The query, as a string. If this parameter is omitted, then the constructor behaves identically to
mysqli_stmt_init
, if provided, then it behaves as permysqli_prepare
.
See Also
mysqli_prepare
|
mysqli_stmt_init
|