Re: [PHP-DB] Populating an array to the next script!

2006-07-07 Thread Dimiter Ivanov
On 7/7/06, Miguel Guirao [EMAIL PROTECTED] wrote: Hello, Is there a way to populate an array from one script to the next one? I'm using a form, and a hidden field for such desire: input name=hwt[] type=hidden value=?php echo($hwGSM);? but it returns this: input name=hwt[] type=hidden

RE: [PHP-DB] Populating an array to the next script!

2006-07-07 Thread Bastien Koert
stick the array in a session variable Bastien From: Miguel Guirao [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Populating an array to the next script! Date: Thu, 06 Jul 2006 23:28:06 -0500 Hello, Is there a way to populate an array from one script to the next one? I'm

Re: [PHP-DB] Re: posting information from a textarea

2006-07-07 Thread Dave W
Ha! I figured the damn thing out! Using the full text type created a bunch of overhead and it wasn't storing it into the table. I realized that I was unsetting the post array before I was doing the print_r so that is why the variables weren't showing up. Then, I finally realized that for some

[PHP-DB] Problem with list#2

2006-07-07 Thread Karl James
Team, I am still receiving duplicate emails. I check with my ISP and they tell me it is Not their problem. I tried to check the headers But I am not able to see anything that indicates What email address its being sent to because I have two of them. Can anyone help suggest on how to

[PHP-DB] running program after insert w/MySQL 4.1

2006-07-07 Thread bill
I have an Access database connecting via ODBC to a local MySQL machine and doing inserts. It does these inserts throughout the day. After each insert, I need a PHP program run. Alas, MySQL 4.1 doesn't do triggers, etc., and upgrading to 5.x looks non-trivial. What else can I do? Is there

RE: [PHP-DB] running program after insert w/MySQL 4.1

2006-07-07 Thread Dwight Altman
If you can make Access execute a shell function, maybe you can use cURL or wget to signal a web PHP script to run (and/or run the PHP program -- if it is not accessible through a URL). Regards, Dwight -Original Message- From: bill [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006

Re: [PHP-DB] running program after insert w/MySQL 4.1

2006-07-07 Thread tg-php
cron or Windows Task Manager would work if you want to check the status of the data periodically, but I believe you can also use Access to hit a web address (it doesn't have to display anything) so you could, at time of insert, have Access activate a PHP script on your web server that does the

RE: [PHP-DB] running program after insert w/MySQL 4.1

2006-07-07 Thread Bastien Koert
You should be able to open a web page from access (might need to write a module) and call a page that would then run your script Bastien From: bill [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] running program after insert w/MySQL 4.1 Date: Fri, 07 Jul 2006 15:11:07 -0400 I

Re: [PHP-DB] Problem with list#2

2006-07-07 Thread tg-php
You may get duplicate messages sometimes when someone responds directly to you as well as copying the message to the main mailing list. Like in this ccase, my To: field is the PHP DB list, and my CC: field is your personal email address. If that's not the issue, then try what Dave suggested

Re: [PHP-DB] Problem with list#2

2006-07-07 Thread Jack Gates
On Friday 07 July 2006 14:30, Karl James wrote: Team, I am still receiving duplicate emails. Karl James (TheSaint) mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] www.theufl.com Did you save your confirm and welcome e-mail from the list? That will

Re: [PHP-DB] running program after insert w/MySQL 4.1

2006-07-07 Thread bill
Access is the backend for a proprietary front end. I just checked with the company and they can't understand why anybody would want to change the program(!). In any case, they won't allow it. So, I'm stuck with the ODBC call from the Win computer sending data to the mysql db on the linux