php 中 怎样使用参数化 来执行mysql 语句
例如
set @a='333';
select * from kk where a = @a;
在php中怎样为@a变量赋值,以执行
select * from kk where a = @a;语句