Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In MySQLi prepared statements what does STMT stand for?

MySQLi prepared statements use the variable $stmt but I couldn't find what STMT stands for or why it is used. For other variables (such as $query and $results) have always made sense to me, and I was just wondering, why $stmt, what is the history behind it?

like image 329
Styphon Avatar asked Feb 13 '23 19:02

Styphon


1 Answers

$stmt represents the word $statement. Shorter is better :D

like image 110
Bilal Avatar answered Feb 17 '23 03:02

Bilal