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, Jon

RE: [PHP-DB] Parsing Error

2001-07-07 Thread Larry Rivera
o few arguments error on this line: printf("mailto:[EMAIL PROTECTED]?subject=$store\%20$jobdesc\";>$jobdesc\n"); Thanks, Jeff "Larry Rivera" <[EMAIL PROTECTED]> wrote: >After a brief look it appears that your call to mysql_query is incorrect >&quo

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] export

2001-05-16 Thread Larry Rivera
What do you mean by unique for a specified date? If you mean to not duplicate data, you can timestamp you entries or use your favorite other method then pull a date range and be done with it. -Original Message- From: bryan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 16, 2001 12:33 PM

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=32&blah=blahblah -Original Message- From: Marko Lesnik [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 0

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 [mailt

RE: [PHP-DB] How to autoincrement an autoincrementing field (MySQL)?

2001-05-02 Thread Larry Rivera
What i do is eith not specify the id column or use null as in "" or actually '' in php, this will enter null which the database then just increments the field as it should. Later! -Original Message- From: Alan Hale [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 02, 2001 10:29 AM To: [EM

RE: [PHP-DB] count function?

2001-03-30 Thread Larry Rivera
try mysql_num_rows function -Original Message- From: DC [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 9:34 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] count function? Hi All I cant quite work out how to count the number of rows in my mysql db that match a certain critieria and

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 Messa

RE: [PHP-DB] A question - ($file_exists)

2001-03-27 Thread Larry Rivera
oops $x should start with "0" -Original Message----- From: Larry Rivera [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 27, 2001 11:04 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-DB] A question - ($file_exists) or you can put yuou r values into an array the

RE: [PHP-DB] A question - ($file_exists)

2001-03-27 Thread Larry Rivera
or you can put yuou r values into an array then for(loop) thru the thing checking as you go. Example $img[] = "episodeID_a.jpg"; $img[] = "episodeID_b.jpg"; $img[] = "episodeID_c.jpg"; for ($x=1; $x mailto:[EMAIL PROTECTED]]On Behalf Of Russ Michell Sent: Tuesday, March 27, 2001 10:46

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: o

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

2001-02-16 Thread Larry Rivera
;Phil Driscoll" <[EMAIL PROTECTED]> To: "Larry Rivera" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, February 16, 2001 1:17 AM Subject: Re: [PHP-DB] Windoze crashes on this simple logon script. > I suspect that what is going on is that your code is just go

[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] Acce