RE: [PHP] Re: Arrays in form

2001-10-21 Thread Brian Tanner
, it would be like input type=checkbox name=messageid[] ... That will ensure that PHP takes all checked messageid boxes and sticks them in an array for ya! Hope that helps! Brian Tanner Project Manager Zaam Internet Solutions Toll Free: 1-866-225-2675 [EMAIL PROTECTED] http://www.zaam.com

[PHP] Help with Encoding/Decoding data for payment Gateways

2001-08-20 Thread Brian Tanner
; $y=$x; $x=$w; } for ($i=0;$i8;$i++) { $q.=substr('0123456789BCDEFGHJKLMNPQRSTVWXYZ',$s[$i]31,1); } return $c eq $q; } Any help/pointers to resources would be greatly appreciated. Thanks in advance. -Brian Tanner -- PHP General Mailing List (http://www.php.net/) To unsubscribe

RE: [PHP] Re: PHP secure

2001-08-24 Thread Brian Tanner
Zend's compiler doesn't really cost that much. If you look at it that way yes. But if you get a developer membership to Zend ($50 a month), you get the encoder as long as you have a membership (min 1 year). So really, you can get the encoder for $600 -Original Message- From: J

RE: [PHP] The future of PHP

2001-08-29 Thread Brian Tanner
Hey, you guys keep coming to Calgary , Alberta, Canada. Stop by Winnipeg, Manitoba, Canada! Brian Tanner Project Manager Zaam Internet Solutions Toll Free: 1-866-225-2675 [EMAIL PROTECTED] http://www.zaam.com -Original Message- From: pierre-yves [mailto:[EMAIL PROTECTED]] Sent: August

RE: [PHP] Re: The future of PHP -- accessory libraries

2001-08-29 Thread Brian Tanner
of bandwidth I need to use up to make my money back) Brian Tanner Project Manager Zaam Internet Solutions Toll Free: 1-866-225-2675 [EMAIL PROTECTED] http://www.zaam.com -Original Message- From: Richard Heyes [mailto:[EMAIL PROTECTED]] Sent: August 29, 2001 1:53 PM To: Rasmus Lerdorf Cc

[PHP] Insight into Object Serialization and Loading

2001-06-29 Thread Brian Tanner
just match up whatever variables it can, and then it doesn't worry about the rest? Insight appreciated. -Brian Tanner -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] Numerical refs to assoc array suddenly undefined offset??

2001-06-30 Thread Brian Tanner
] If you want to print out your array elements in order, use: while (list ($key, $val) = each ($my_array)) { echo $key = $valbr; } Brian Tanner Project Manager Zaam Internet Solutions Toll Free: 1-866-225-2675 [EMAIL PROTECTED] http://www.zaam.com CC Zona [EMAIL PROTECTED] wrote in message

Re: [PHP] Arranging lists

2001-04-30 Thread Brian Tanner
You'll have to assign some sort of order to them using an integer tag column or something similar... and then order by that when you select That's my best suggestion. -Brian http://www.zaam.com Peter Houchin [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...