in reply to Re: Rows fail to delete without error
in thread Rows fail to delete without error

Thx for the reply, as RMGir pointed out my split was in the if block and elsif wasn't getting it. Regarding your question re bind_param() I was having a problem with failing to match know rows with simply using placeholders and someone suggested bind_param() and it worked so now I am cargo-cult programming and doing waht has worked without asking if it was a mere coincidence in the first place. Re using the array whole, I don't use the first element.
Thx for the reply!!
jg
_____________________________________________________
Think a race on a horse on a ball with a fish! TG

Replies are listed 'Best First'.
Re: Re: Re: Rows fail to delete without error
by trs80 (Priest) on Apr 08, 2002 at 21:53 UTC
    Now you got me curious again. How do you not use the first element? You use @blah = h2("TEXT"); and then call blah, how does that not use the first element?
    my @success = h2({},'TEST'); success(@success); sub success { print shift , "\n"; }
    There is only one element in the list that I can see in that syntax, what I am missing?