[PHP] Sessions Timeout

2004-07-27 Thread Enda Nagle - Lists
that the session lifetime is set to 24mins, but am wondering if there is any given reason why I should change this (or not!). session.cookie_lifetime = 0 session.gc_maxlifetime = 1440 Thanks for the help, Enda -- - + - + - + - + - + - + - + - + - + - + - + - + - Enda Nagle +353 86 168 0774 [EMAIL

[PHP] Sendmail Return-Path

2004-07-27 Thread Enda Nagle - Lists
/sbin/sendmail -t -i I¹m working off a Linux box, so presumably I can¹t use the sendmail_from variable? I also tried to set the following variable in the headers for the mail: $headers .= X-Return-path: ME [EMAIL PROTECTED]\r\n; Any help appreciated, Thanks Enda

Re: [PHP] html text area and mysql text fields

2004-07-27 Thread Enda Nagle - Lists
? Regards Enda -- - + - + - + - + - + - + - + - + - + - + - + - + - Enda Nagle +353 86 168 0774 [EMAIL PROTECTED] www.category9.com - + - + - + - + - + - + - + - + - + - + - + - + - On 27/07/2004 22:55, Matthew Sims [EMAIL PROTECTED] wrote: Hi, If I have a html textarea for inputting text

Re: [PHP] Sendmail Return-Path

2004-07-27 Thread Enda Nagle - Lists
I guess I¹ll just have to try that PEAR package. Regards Enda -- On 27/07/2004 22:25, Justin Patrin [EMAIL PROTECTED] wrote: On Tue, 27 Jul 2004 22:07:52 +0100, Enda Nagle - Lists [EMAIL PROTECTED] wrote: Hi Guys, I¹m using PHP¹s mail() function on several sites, but have difficulty

Re: [PHP] sessions

2004-06-04 Thread Enda Nagle - Lists
Mark, You need to do this: $name = . $FirstName . , . $LastName . ; Regards Enda -- On 05/06/2004 01:22, BigMark [EMAIL PROTECTED] wrote: why is this not working. I am using instead of a form ($name = $_POST[name];) and linking to it from a users logged in page. $FirstName

[PHP] Multiple Update from one form

2004-05-18 Thread Enda Nagle - Lists
would be appreciated. Thanks Enda --

Re: [PHP] Multiple Update from one form

2004-05-18 Thread Enda Nagle - Lists
\input type=text name=\ordersinfo[$i][tracking]\ value=\ . $roworders[tracking] . \ size=25/td ... Regards Enda -- On 18/05/2004 23:20, Enda Nagle - Lists [EMAIL PROTECTED] wrote: Hi I have a current application where I am listing a table of order details, where a fulfillment company can

Re: [PHP] Multiple Update from one form

2004-05-18 Thread Enda Nagle - Lists
Hi Miles, Thanks for the reply. I see what you¹re doing there and had looked at the foreach() functionality, but am I right in saying that I still need to use the multidimensional array since there are three variables in each line? (id, tracking, kb_ship)? Enda -- On 19/05/2004 00:58, Miles

[PHP] ip to country

2004-03-20 Thread Enda Nagle
for the help, Enda -- Enda Nagle +353 86 168 0774 [EMAIL PROTECTED] www.nightsol.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PDF

2004-02-18 Thread Enda Nagle
Juan, Try doing something like this: define('DOLLAR',chr(36)); Just replace the DOLLAR and the chr value with the chatacter number and reference the variables in the PDF... Regards Enda -- -Original Message- From: Juan Torres [mailto:[EMAIL PROTECTED] Sent: 18 February 2004 10:54

[PHP] MS SQL / PHP

2004-01-27 Thread Enda Nagle
already using on an adodb connection on a Linux box to a MySQL server? Thanks for the help Enda Enda Nagle +353 86 168 0774 [EMAIL PROTECTED] www.nightsol.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] MS SQL / PHP

2004-01-27 Thread Enda Nagle
etc for the recordset but just isn't returning the data (or returning data in a readable format). Thanks Enda -- -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: 27 January 2004 14:05 To: Enda Nagle Cc: PHP List Subject: Re: [PHP] MS SQL / PHP try print_r

RE: [PHP] MS SQL / PHP

2004-01-27 Thread Enda Nagle
[numdevices]-value . /tdtd . $list2-Fields[source]-value . /td/tr); $list2-MoveNext(); } -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: 27 January 2004 14:34 To: Enda Nagle Cc: PHP List Subject: Re: [PHP] MS SQL / PHP You need to find out what $list2-Fields(sku

[PHP] mysql update query

2003-12-19 Thread Enda
are in place. Am I right to have the brackets around the WHERE conditions? I have also tried this query in phpMyAdmin but no result... and yes, the record does exist.. Help! Thanks Enda -- -- Enda Nagle NightSol e: [EMAIL PROTECTED] w: www.nightsol.net -- PHP General Mailing List (http://www.php.net

RE: [PHP] mysql update query

2003-12-19 Thread Enda
of the fields in the recordset as the 'key'... I tried both suggestions - thanks, but still no luck. Any more ideas? I don't really want to have to go and rewrite the update to include a unique id for each record! Thanks guys for your help. Enda -- -Original Message- From: Jonathan Wilkes

Re: [PHP] mysql update query

2003-12-19 Thread Enda
of course someone can come in with a last minute flash of inspiration! i really really don't need this at 5:12 on a friday afternoon! -Original Message- From: Jonathan Wilkes [mailto:[EMAIL PROTECTED] Sent: 19 December 2003 17:00 To: Enda Subject: RE: [PHP] mysql update query when you added

[PHP] Email to database

2003-09-05 Thread Enda Nagle
is I get copies of all mails sent to the first address pulled from the table. Any help appreciated. Thanks Enda -- = PHP Code = $result1=mysql_query(select DISTINCT first_name,last_name,email_address from

Re: [PHP] Email to database

2003-09-05 Thread Enda Nagle
as I want it to. Thanks for the help Enda -- 9/5/03 1:15 PM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] while($row = mysql_fetch_array($result1)) { $headers .= MIME-Version: 1.0\r\n; $headers .= Content-type: text/html; charset=iso-8859-1\r\n

Re: [PHP] Email to database

2003-09-05 Thread Enda Nagle
his message and the one for email3 email3 ­ gets his own message Any ideas? Enda -- On 9/5/03 2:29 PM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] Is there something like MoveNext I should use for the mail function? If I put the $headers in the while loop it just keeps adding

Re: [PHP] Email to database

2003-09-05 Thread Enda Nagle
Its working ok now ­ I changed the error in the headers, but I had added in another BCC item which was causing the repeated emails. Working great now Jay ­ thanks a mil for your help! Regards Enda -- On 9/5/03 2:59 PM, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] email1 - gets a copy

RE: [PHP] pdf information..

2003-07-16 Thread Enda Nagle
images into the PDF, any time I printed them they turned out ok. Best of all, its free and you don't need to use PDF Lib. Enda -- -Original Message- From: Louie Miranda [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 8:30 AM To: [EMAIL PROTECTED] Subject: [PHP] pdf information

[PHP] Simple forms query

2003-07-09 Thread Enda Nagle
I know this has prob been gone through hundreds of times... I have a form, and I want to display all the form variables on the target page - without having to use separate print statements for each variable. tks - Enda Nagle

RE: [PHP] Simple forms query

2003-07-09 Thread Enda Nagle
Hi guys, Thanks a mil - works great. I'm trying to develop a shopping cart in PHP/MySQL so I'll no doubt be back soon with more queries - thanks Enda -- -Original Message- From: Matt Matijevich [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 5:17 PM To: Subject: Re: [PHP