Re: [PHP] [Followup] Exploding Zip Codes! (Using PHP's explode function)

2002-08-15 Thread Analysis & Solutions
On Tue, Aug 13, 2002 at 12:13:35PM -0700, Keith Posehn wrote: > > I have the code together now to put it all the zip codes into and array--but > now I need to add those zip codes to a sql statement for the WHERE clause. > > SELECT * FROM [table] > WHERE zip="[all the darn zips listed here]" $qu

RE: [PHP] [Followup] Exploding Zip Codes! (Using PHP's explode function)

2002-08-13 Thread Michael Geier
ysql_exec($sql,$db); .m > -Original Message- > From: Keith Posehn [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 13, 2002 2:14 PM > To: [EMAIL PROTECTED] > Subject: [PHP] [Followup] Exploding Zip Codes! (Using PHP's explode > function) > > > Final question

[PHP] [Followup] Exploding Zip Codes! (Using PHP's explode function)

2002-08-13 Thread Keith Posehn
Final question on this (I hope). I have the code together now to put it all the zip codes into and array--but now I need to add those zip codes to a sql statement for the WHERE clause. Example: SELECT * FROM [table] WHERE zip="[all the darn zips listed here]" (or something like that) How would