Re: [PHP] mysqli bind_param and store_result don't work well together

2006-01-13 Thread Curt Zirzow
On Sat, Jan 14, 2006 at 03:18:55AM +0530, anirudh dutt wrote: > On 1/5/06, Curt Zirzow <[EMAIL PROTECTED]> wrote: > > On Wed, Jan 04, 2006 at 12:31:02AM +0530, anirudh dutt wrote: > > > hi > > > the subject is pretty much what the problem is. > > > > > > if i use > > > $st1 = $sql->stmt_init(); //

Re: [PHP] mysqli bind_param and store_result don't work well together

2006-01-13 Thread anirudh dutt
On 1/5/06, Curt Zirzow <[EMAIL PROTECTED]> wrote: > On Wed, Jan 04, 2006 at 12:31:02AM +0530, anirudh dutt wrote: > > hi > > the subject is pretty much what the problem is. > > > > if i use > > $st1 = $sql->stmt_init(); // $sql is a mysqli obj/conn > > $st1->prepare("select `num` from `activity` wh

Re: [PHP] mysqli bind_param and store_result don't work well together

2006-01-04 Thread Curt Zirzow
On Wed, Jan 04, 2006 at 12:31:02AM +0530, anirudh dutt wrote: > hi > the subject is pretty much what the problem is. > > if i use > $st1 = $sql->stmt_init(); // $sql is a mysqli obj/conn > $st1->prepare("select `num` from `activity` where `id` = ?"); > $st1->bind_param('s', $myid); > $myid = '3f6d

[PHP] mysqli bind_param and store_result don't work well together

2006-01-03 Thread anirudh dutt
hi the subject is pretty much what the problem is. if i use $st1 = $sql->stmt_init(); // $sql is a mysqli obj/conn $st1->prepare("select `num` from `activity` where `id` = ?"); $st1->bind_param('s', $myid); $myid = '3f6d017d3e728b057bcc082a7db75a57'; // forcing value to check $st1->execute(); $st1