Re: [PHP-DB] session.save_path

2001-11-29 Thread Larry Rivera
as to the first point I have no idea, but on sessions, they are server side. The Session information is stored on the webserver or server accessible directory, so the location should match your setup not the client, the only information shared there is cookie. At 04:28 PM 11/28/2001 -0700,

RE: [PHP-DB] Parsing Error

2001-07-07 Thread Larry Rivera
After a brief look it appears that your call to mysql_query is incorrect after the query then , then the link resource -Original Message- From: Jeff Grossman [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 07, 2001 6:23 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Parsing Error I keep

RE: [PHP-DB] Parsing Error

2001-07-07 Thread Larry Rivera
arguments error on this line: printf(A HREF=\mailto:[EMAIL PROTECTED]?subject=$store\%20$jobdesc\;$jobdesc/ABR \n); Thanks, Jeff Larry Rivera [EMAIL PROTECTED] wrote: After a brief look it appears that your call to mysql_query is incorrect after the query then , then the link resource

RE: [PHP-DB] Call php function from javascript

2001-05-09 Thread Larry Rivera
Well about the only thing i think you can do since the page has been sent(javascript is client side) is call a window open js functin then write the variables in the url to open ie ?id=32blah=blahblah -Original Message- From: Marko Lesnik [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May

RE: [PHP-DB] interbase (?) field contents does not show

2001-05-03 Thread Larry Rivera
Beacuse u are using an object structure, Check OOP in PHP, the pointer $variable-name is for objects that why its used in the fetch object and not fetch row fetch row would be $rs[rowname] or $rs[0]. Check the documentation for more detailed info -Original Message- From: GMansky

RE: [PHP-DB] count function?

2001-03-30 Thread Larry Rivera
I think you have to run multiple queries, ie run some loop after finding out what topics you wil count from e== run a select distinct to get the topics run a while or for loop then run queries again like count(*) where topic='$topic' etc then echo the result to each line -Original

RE: [PHP-DB] dynamic columns

2001-03-16 Thread Larry Rivera
Are the fields always the same? Ive used something similar, I usually fill an array with selection ids when while loop them into querys- To get the table I ussualy create a container table(one cell) and generate tables inside the container one for each item. -Original Message- From:

[PHP-DB] Windoze crashes on this simple logon script.

2001-02-15 Thread Larry Rivera
Anyone have similar exp on why this would crash on Win32 is IIS if (isset($it)){ // Check Entered User Credentials if(($logon == "SuperUser") ($pass == "Pass")){ session_start(); session_register('logon'); header("Location:$PHP_SELF"); exit(); }else{ etc . . . . - Original Message

Re: [PHP-DB] Access 2000 to PostgreSQL

2001-01-11 Thread Larry Rivera
I belive that Acceess can export to a comma delimited file, so you can do that then dump it into you new database ;) - Original Message - From: "Julio Cuz, Jr." [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, January 11, 2001 3:33 PM Subject: [PHP-DB] Access