Re: [PHP-DB] mysql_num_rows

2002-01-06 Thread Richard S. Crawford
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] Sliante, Richard S. Crawford http://www.mossroot.com AIM: Buffalo2K ICQ: 11646404 Y

RE: [PHP-DB] mysql_num_rows

2002-01-06 Thread Richard S. Crawford
Sliante, Richard S. Crawford http://www.mossroot.com AIM: Buffalo2K ICQ: 11646404 Y!: rscrawford MSN: [EMAIL PROTECTED] It is only with the heart that we see rightly; what is essential is invisible to the eye. --Antoine de Saint Exupéry Push the button, Max! -- PHP Database Mailing List

Re: [PHP-DB] MySQL: Reverse Order by???

2001-12-19 Thread Richard S. Crawford
ORDER BY field DESC At 07:27 AM 12/19/2001, Brian Grayless wrote: How you do a reverse order by in SQL, kind of like ORDER BY field only reverse the order??? Sliante, Richard S. Crawford http://www.mossroot.com AIM: Buffalo2K ICQ: 11646404 Y!: rscrawford MSN: [EMAIL PROTECTED] It is only

Re: [PHP-DB] Re: Dynamically populating a dropdown box

2001-12-14 Thread Richard S. Crawford
. Weird-ass browsers indeed. Hmph. At 10:41 AM 12/14/2001, you wrote: the value can be in single quotes also, altho i dont think quotes matter unless you use opera or some other wierdass browser (you can also put doubles using \) Sliante, Richard S. Crawford http://www.mossroot.com AIM: Buffalo2K

Re: [PHP-DB] Retrieve HTML from db

2001-11-20 Thread Richard S. Crawford
] Sliante, Richard S. Crawford http://www.mossroot.com AIM: Buffalo2K ICQ: 11646404 Y!: rscrawford MSN: [EMAIL PROTECTED] It is only with the heart that we see rightly; what is essential is invisible to the eye. --Antoine de Saint Exupéry Push the button, Max! -- PHP Database Mailing List (http

Re: [PHP-DB] Need Help on DHTML and PHP

2001-11-15 Thread Richard S. Crawford
, Richard S. Crawford http://www.mossroot.com mailto:[EMAIL PROTECTED] AIM: Buffalo2K ICQ: 11646404 Y!: rscrawford It is only with the heart that we see rightly; what is essential is invisible to the eye. --Antoine de Saint Exupéry Push the button, Max! -- PHP Database Mailing List (http

Re: [PHP-DB] create table with php -whats wrong?

2001-10-28 Thread Richard S. Crawford
Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] Sliante, Richard S. Crawford http://www.mossroot.com mailto:[EMAIL PROTECTED] AIM: Buffalo2K ICQ

Re: [PHP-DB] Re: Html email

2001-10-24 Thread Richard S. Crawford
is that Outlook doesnt know what to do with the header you're sending it (maybe too much info for outlook??)... Other than that I've got no idea =) Sliante, Richard S. Crawford http://www.mossroot.com mailto:[EMAIL PROTECTED] AIM: Buffalo2K ICQ: 11646404 Y!: rscrawford It is only

Re: [PHP-DB] Concatenating fields

2001-10-24 Thread Richard S. Crawford
Developer Crispin Corporations Inc. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED] Sliante, Richard S. Crawford http://www.mossroot.com

Re: [PHP-DB] PHP how to compare?

2001-03-14 Thread Richard S. Crawford
use just one = sign. So, if ($PASS != $PASSNOG) {... At 01:41 AM 3/15/01 +0100, Duky wrote: Hmm.. maybe I wasn't clear enough... what I want is to check is WHEN the two passwords aren't the same, then it should echo "password doesn't match!". So when NOT the same, then echo. What to use for

[PHP-DB] Oracle Function Calls Redux

2001-03-08 Thread Richard S. Crawford
Problem solved! Thanks to everyone who helped out (and to our system DBA for reminding me that an Oracle function is just a type of stored procedure). For what it's worth, here is the code that I wound up using (sensitive company information 'ed out, of course): ?php // Establish

[PHP-DB] Oracle Function Calls

2001-03-07 Thread Richard S. Crawford
Ah! My bad! I sent this question out with the wrong subject line. My apologies to everyone that I confused. At 01:07 PM 3/7/01 -0800, Richard S. Crawford wrote: I desperately need to know whether it is possible to call an Oracle function in PHP. For example... $functionResult=hubins

Re: AW: [PHP-DB] Oracle Function Calls

2001-03-07 Thread Richard S. Crawford
is a dummy table; then fetch the resultrow and ociresult($stmt, 1) will return your functionreturnvalue mk -Ursprungliche Nachricht- Von: Richard S. Crawford [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 7. Marz 2001 22:11 An: [EMAIL PROTECTED] Betreff: [PHP-DB] Oracle Function Calls

Re: AW: AW: [PHP-DB] Oracle Function Calls

2001-03-07 Thread Richard S. Crawford
Hm. Assuming that I don't have the option of rewriting the function to a procedure, is there another way to go? At 10:54 PM 3/7/01 +0100, Matthias Kopolt wrote: Oracle Divides Function in several Groups DML means Data-Manipulating function; (in your funciton is a update or insert) to use a

Re: [PHP-DB] Primary Key Value

2001-02-27 Thread Richard S. Crawford
Perfect! Thanks. At 01:05 PM 2/28/01 +0800, Beau Lebens wrote: mysql_insert_id() i *think* also pg_lastiod() or something similar... At 08:57 PM 2/27/01 -0800, Richard S. Crawford wrote: Suppose I put data into a table using an Insert query, and that the table generates a primary key