[PHP-DB] Re: [PHP-WIN] How to get the content of a file into the valueof a text column

2001-08-23 Thread Angie Tollerson
Jack, You just need to check out the fopen and fread functions on php.net/manual Angie Tollerson Alliance Technologies Web Programmer (515)245-7628 [EMAIL PROTECTED] >>> "Jack" <[EMAIL PROTECTED]> [EMAIL PROTECTED] 10:02AM >>> Dear all Actually i'm trying

[PHP-DB] Re: [PHP-WIN] Multi-Task on PHP by submitting a form!

2001-08-20 Thread Angie Tollerson
Jack, Yes, you can do as many things as you want in a php document before you have die() at the end :) Angie >>> "Jack" <[EMAIL PROTECTED]> 08/20/01 08:12AM >>> Dear all I was trying to get a user input form to insert to a mysql_database and e-mail to me! Is it possible to make php perform two t

Re: [PHP-DB] Password Protect page

2001-06-22 Thread Angie Tollerson
I ALWAYS use this set of scripts because they don't have to integrate into your pages. They are a front end check that you just add one line to the top of all your pages you want to secure. The check runs and if they have clearance, THEN your page displays. Very easy to use and customize. yo

Re: [PHP-DB] mssql_fetch_array problem

2001-06-20 Thread Angie Tollerson
Jennifer, Try this code..I am using the same stuff as you with the exception of mysql instead of sql..but it may still work: "; } } ?> It's kind of a "save as" type of statment but it works for me! I've had no problems with that sql statement. Angie >>> "Jennifer Arcino Demeterio"

Re: [PHP-DB] Any word in how to connect to PPROGRESS db usingPHP.

2001-06-20 Thread Angie Tollerson
Hi there, We are currently getting PHP to talk to Progress. How you do it is thru ODBC. You have to get a ODBC driver for Progress which you can get straight from Progress (Merant driver) for $100 or you can get one from www.openlinksw.com for $500 with multitier capabilities. I will warn you

Re: [PHP-DB] odbc errors

2001-05-15 Thread Angie Tollerson
P.S. One of the users there mentions that she had to open the odbc_free_result INTO a variable in order for it to work: $free_result = odbc_free_result($sql_result); for example Angie >>> "Jello" <[EMAIL PROTECTED]> 05/15/01 10:27AM >>> i've just upgraded my computer... running win ME ( i know

Re: [PHP-DB] odbc errors

2001-05-15 Thread Angie Tollerson
Jello, You may want to look at some of the user comments on odbc_result_all manual on php.net: http://www.php.net/manual/en/function.odbc-result-all.php Some people mentions errors and fixes there for your problem. I think you are getting connected or you would have got your error messages "Coul

Re: [PHP-DB] Autoincrement Question

2001-05-11 Thread Angie Tollerson
t; Angie, Is there a bug here? How do you "re-add" a fourth record? Is 3.22.33 a development or a stable version? With MySQL 3.22.32, and table type of MyISAM I did not get re-use of the auto_increment keys , no matter where the records were deleted or inserted. Miles At 03:24 PM 5/10

Re: [PHP-DB] Autoincrement Question

2001-05-10 Thread Angie Tollerson
I am also doing it on 3.23.33 with MyISAM recover options off, is that what is happening? like I said...if I delete record one, and add a fourth record, It DOES NOT add it as 1. But as 5. however, if I delete 4, then add a fourth again, it sets it as 4. I'm not sure if that has anything to d

Re: [PHP-DB] Autoincrement Question

2001-05-10 Thread Angie Tollerson
;[EMAIL PROTECTED]> 05/10/01 02:07PM >>> In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] ("Angie Tollerson") wrote: > I will be 3 Jeff :) > > > >>> "Jeff Oien" <[EMAIL PROTECTED]> 05/10/01 01:13PM >>> > If I have a

Re: [PHP-DB] Autoincrement Question

2001-05-10 Thread Angie Tollerson
I will be 3 Jeff :) >>> "Jeff Oien" <[EMAIL PROTECTED]> 05/10/01 01:13PM >>> If I have a database that has three records and I delete the entire third record, when another record is then added will the auto_increment number be 3 or 4? Thanks. Jeff Oien -- PHP Database Mailing List (http://www.

Re: [PHP-DB] Edit a file from a PHP form

2001-05-02 Thread Angie Tollerson
Hmm, Allen, this may be overwhelming , but what you are trying to do would be ideal with XML files and manipulating them with PHP and XSL style sheets. I am doing the exact same thing you are with these technologies. Your XML page looks just like a text file but with tags, like this:

Re: [PHP-DB] Sessions ???

2001-05-02 Thread Angie Tollerson
Dave, What you need to do is make sure that the variable: $topidID is being set to a value first (before you register it you must get it from the table. Once it is set you need to register it as you did BUT WITHOUT the $. So it will say: Make sure that session_start is ALWAYS before any head