[PHP] Re: [PHP-DB] auto_increment and INSERT INTO

2006-01-21 Thread tg-php
Try: -TG = = = Original message = = = I have various tables where a column is set to auto_increment in my table structure. I have been using the following INSERT query format: INSERT INTO table VALUES ('$auto_increment_variable','$variable_1', '$variable_2') and then in applications wh

Re: [PHP] $_SESSION saves all values but Class -- works on one server but not another?! [second plead for help]

2006-01-24 Thread tg-php
You say it's working on one box and not on the other? Maybe I'm wrong (and sounds like I am) but I thought that you couldn't pass objects between scripts even with serialize()? Certainly sounds like it was working for you... can anyone clarify what objects/variables/data types can be passed

[PHP] PHP job postings?

2006-02-16 Thread tg-php
Just wondering if anyone know of a mailing list of forum specifically dedicated to soliciting for programmers to fill PHP programming positions? I see people post to this list periodically but it really doesn't seem like the right place. Our project is going to be expanding quite a bit and we a

Re: [PHP] PHP job postings + previous hosting question

2006-02-17 Thread tg-php
Just wanted to thank everyone for the helpful suggestions and ideas regarding these two topics. I've had to put my web hosting decision on the back burner for now while I deal with other big projects and other fun issues so I apologize for not getting back to the people who responded (publicly

Re: [PHP] Last Sunday in September?

2006-02-17 Thread tg-php
There's going to be 'tighter' and more efficient ways to do this.. probably some using strtotime(). I have an irrational distrust of the results from strtotime() though, so I use it sparingly. Here's a simple solution though: There's going to be a dozen ways to skin this one, just showing on

Re: [PHP] "!" in front of a variable?

2006-02-17 Thread tg-php
Ooops.. I made the same mistake in my private reply.. hah.. = = = Original message = = = I took me a little while to notice that it wasn't a function declaration :p ~It's just as Jay said, it's calling "function" with those arguments, where '!$var2' extends to '!(bool)$var2' or "treat/cast this

Re: [PHP] What does a "?" represent

2006-02-17 Thread tg-php
It's usually used as a single character wildcard. So "something = ?" would match "A", "B", "1", etc.. but not "AB, "A1". -TG = = = Original message = = = In the some code I'm working with I see many database queries using the PEAR DB class where "?" is used for a value in the SQL. What is t

[PHP] PHP documentation solutions? (PHPDoc, Doxygen, ???)

2006-02-20 Thread tg-php
Ok, so we're starting to get a little more serious about this product we're working on and may in the near future try to standardize and flesh out our coding and product documentation (always a nice thing). I'm semi-familiar with PHPDoc (http://www.phpdoc.org) but my boss just pointed me towar

<    1   2   3   4