Re: [PHP-DB] That crazy IF command!

2005-04-03 Thread Justin Gruenberg
On Apr 2, 2005 3:52 PM, Ron Piggott <[EMAIL PROTECTED]> wrote: > Hey guys ... I am wondering if you have a varable named > > $query_holder="the big fat cow made lots of milk today"; > > are you able to use the if command to see if the words "big fat" are part of > that phrase? > > What would the

Re: [PHP-DB] supernoob strikes again

2004-05-08 Thread Justin Gruenberg
Dan Bowkley wrote: Yeah, I'm back... I'm revamping my own site, finally...going for the same sort of dynamic system I was using for my last creation. Currently, I have index.php returning lots of different pages from a mysql database; what I'd like to do is have a somewhat more elegant solution

Re: [PHP-DB] Finding zipcode within radius of another zipcode.

2002-12-25 Thread justin gruenberg
Actually, the US Census Bureau provides the information for free, but you have to do some work to associate a ZIP code with the data they provide. Since zip codes dont have any real shape to them, and change often, the census people have assigned their own numbers to different areas. We've fo

Re: [PHP-DB] inserting mysql data using php array???

2001-11-27 Thread justin gruenberg
meaning INSERT INTO table (first_name,middle_name,last_name,suffix) VALUES($an_array) no. that is not possible. you do actually have to write it out.. INSERT INTO table (first_name,middle_name,last_name,suffix) VALUES('$name[0]', '$name[1]', '$name[2]', $name[3]) I dont understand why you