RE: [PHP-WIN] FW: confirm unsubscribe from php-windows@lists.php.net

2007-04-04 Thread Bill Bolte
It is strange. The IP address from the header of the email I received (the IP that it claims was from the unsubscribe request) isn't from where I'm at. It's in another state. -Original Message- From: Mikael Grön [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 04, 2007 3:23 PM To: php-

Re: [PHP-WIN] FW: confirm unsubscribe from php-windows@lists.php.net

2007-04-04 Thread Mikael Grön
Yeah, I just got one too! Strange.. Mike Bill Bolte wrote: This is the second one of these that I've received. I didn't initiate it. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 04, 2007 1:41 PM To: Bill Bolte Subject: confirm unsu

[PHP-WIN] FW: confirm unsubscribe from php-windows@lists.php.net

2007-04-04 Thread Bill Bolte
This is the second one of these that I've received. I didn't initiate it. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 04, 2007 1:41 PM To: Bill Bolte Subject: confirm unsubscribe from php-windows@lists.php.net Hi! This is the ezmlm pr

Re: [PHP-WIN] Sessions?

2007-04-04 Thread trystano
Funny you should ask this. We just had a bad experience of this on our live server where previous developers had coded each logged in user to store a DataTable (using .NET) object into a session. The DataTable object was a couple of hundred KiloBytes and the session life was set to 1 hour. T

Re: [PHP-WIN] Sessions?

2007-04-04 Thread Mikael Grön
Hey Gustav It depends so much on how much data you store in the session variables, what kind of storage you run (database or files and so on) and how many users you have, so it's really hard to say. In my experience, sessions have very little impact on the server how ever long you set them to

[PHP-WIN] Sessions?

2007-04-04 Thread Gustav Wiberg
Hi there! How much impact on the server have sessions based on the length of minutes (seconds) that I change to? I just wonder if someone out there has Any experience of this or know a place on the web that describes this...? Best regards /Gustav Wiberg -- PHP Windows Mailing List (http://www.

Re: [PHP-WIN] insert data in to columns base on the selection of the list box.

2007-04-04 Thread Mikael Grön
Well, simply put (not really following your structure): --- code --- $sql = "update $tablename set address = '$address', phone = '$phone' where LastName = '$lastname';"; if (mysql_query($sql)): echo "Updated " . $_POST['R'] . "\n"; else: echo "Error: " . mysq

Re: [PHP-WIN] insert data in to columns base on the selection of the list box.

2007-04-04 Thread Mikael Grön
I don't get the purpose of your code. It's not looking right anywhere! I'm guessing the select-box isn't working too well, right? Let's say there's 4 $lines: foreach ($line as $value) { echo"$value"; will produce: value='value3'value4 ... You need to use this code for the