Re: [PHP-WIN] LAST_INSERT_ID & LAST_UPDATE_ID

2007-05-25 Thread Stut
sam rumaizan wrote: You mean Normalization Not in my part of the world. England. You know, where English came from. And quit with the bold!! It's not big, it's not clever and it puts *'s all over your email! -Stut */Stut <[EMAIL PROTECTED]>/* wrote: sam rumaizan wrote: > What I

Re: [PHP-WIN] Retrieve all SESSION variables.

2007-05-25 Thread Stut
Alf Stockton wrote: Stut wrote: Alf Stockton wrote: Is there a method whereby one can retrieve all php SESSION variables on a Windows server. I have tried:- $val) { echo $key . " : " . $val . ""; } ?> but this appears to only return current user variables. Shocki

Re: [PHP-WIN] Retrieve all SESSION variables.

2007-05-25 Thread Alf Stockton
Stut wrote: Alf Stockton wrote: Is there a method whereby one can retrieve all php SESSION variables on a Windows server. I have tried:- $val) { echo $key . " : " . $val . ""; } ?> but this appears to only return current user variables. Shocking that. You think ma

Re: [PHP-WIN] Retrieve all SESSION variables.

2007-05-25 Thread Jarrett Meyer
I think Stut is being a little sarcastic. :) The original question is correct: The method below ( foreach ($_SESSION as $k => $v) ... ) will only tell you the current session variables for the current user. That is intentional in the design of the $_SESSION variable. It will not tell you all of t

Re: [PHP-WIN] Retrieve all SESSION variables.

2007-05-25 Thread Stut
Alf Stockton wrote: Is there a method whereby one can retrieve all php SESSION variables on a Windows server. I have tried:- $val) { echo $key . " : " . $val . ""; } ?> but this appears to only return current user variables. Shocking that. You think maybe there's s

Re: [PHP-WIN] IE ignoring background image

2007-05-25 Thread Niel Archer
Alf, this is NOT a PHP question. Please stop asking questions that are so obviously off-topic on this list. There are plenty of resources on the web for this kind of problem. http://www.blooberry.com/indexdot/css/syntax/unit/url.htm Niel -- PHP Windows Mailing List (http://www.php.net/) To u

[PHP-WIN] Retrieve all SESSION variables.

2007-05-25 Thread Alf Stockton
Is there a method whereby one can retrieve all php SESSION variables on a Windows server. I have tried:- $val) { echo $key . " : " . $val . ""; } ?> but this appears to only return current user variables. -- Regards, Alf Stocktonwww.stockton

RE: [PHP-WIN] IE ignoring background image

2007-05-25 Thread Bill Bolte
Your 2 paths are different. Which is the correct path? "/events/background.png" or "/images/background.png"? Once you solve that, you'll probably see why the image isn't showing in either place. -Original Message- From: Alf Stockton [mailto:[EMAIL PROTECTED] Sent: Friday, May 25, 2007 7:2

[PHP-WIN] IE ignoring background image

2007-05-25 Thread Alf Stockton
I have the following line coded into my style.css body {font-family: verdana,arial,helvetica,sans-serif; background-color: #b4d9fb; background-image: url("../images/background.png"); background-repeat: no-repeat; background-position: top center} and IE7 is not displaying the background image.

Re: [PHP-WIN] LAST_INSERT_ID & LAST_UPDATE_ID

2007-05-25 Thread Stut
sam rumaizan wrote: What I want to do is: 1-user has 10 columns (fields). 2- User updated one of these fields using CONCAT_WS(adding new data to previous data). 3- When user views any of his information he sees only the last updated part of the data. So, timestamp/datetime field is not goi

Re: [PHP-WIN] Warnings/Errors in PHP

2007-05-25 Thread Stut
Dale Attree wrote: Error_reporting(E_ALL ^ E_NOTICE); Why oh why would you suggest this? Notices are telling you that something is wrong. Do you ignore the light that indicates low fuel in your car? If you do it'll keep working for a while, but it's a ticking time bomb!! -Stut -- PHP Wind

Re: [PHP-WIN] LAST_INSERT_ID & LAST_UPDATE_ID

2007-05-25 Thread Lester Caine
sam rumaizan wrote: What I want to do is: 1-user has 10 columns (fields). 2- User updated one of these fields using CONCAT_WS(adding new data to previous data). 3- When user views any of his information he sees only the last updated part of the data. Not sure what you are trying

Re: [PHP-WIN] LAST_INSERT_ID & LAST_UPDATE_ID

2007-05-25 Thread sam rumaizan
What I want to do is: 1-user has 10 columns (fields). 2- User updated one of these fields using CONCAT_WS(adding new data to previous data). 3- When user views any of his information he sees only the last updated part of the data. So, timestamp/datetime field is not going

Re: [PHP-WIN] Warnings/Errors in PHP

2007-05-25 Thread Gustav Wiberg
Hi there! Thanx a lot!!! :-) Best regards /Gustav Wiberg - Original Message - From: "Dale Attree" <[EMAIL PROTECTED]> To: "'Gustav Wiberg'" <[EMAIL PROTECTED]>; "'chandar'" <[EMAIL PROTECTED]> Cc: "'PHP WindowsList'" Sent: Friday, May 25, 2007 9:27 AM Subject: RE: [PHP-WIN] Warnings/

RE: [PHP-WIN] Warnings/Errors in PHP

2007-05-25 Thread Dale Attree
Ini_set("display_errors",1); Error_reporting(E_ALL ^ E_NOTICE); -Original Message- From: Gustav Wiberg [mailto:[EMAIL PROTECTED] Sent: 25 May 2007 09:16 AM To: chandar Cc: PHP WindowsList Subject: Re: [PHP-WIN] Warnings/Errors in PHP Hi there! I know that, but that wasn't my question...

Re: [PHP-WIN] Warnings/Errors in PHP

2007-05-25 Thread Gustav Wiberg
Hi there! I know that, but that wasn't my question... I want to do it in the PHP-script... Best regards /Gustav Wiberg - Original Message - From: "chandar" <[EMAIL PROTECTED]> To: "Gustav Wiberg" <[EMAIL PROTECTED]> Cc: "PHP WindowsList" Sent: Friday, May 25, 2007 9:12 AM Subject: Re

Re: [PHP-WIN] Warnings/Errors in PHP

2007-05-25 Thread chandar
You can do this in PHP ini file. Thanks/Chandar Gustav Wiberg wrote: Hi there! The server I'm connected to is not showing any warnings/error in PHP. Instead it just displays a blank page. How can I do in PHP-script to show errors/warning? I know this is possible, but I'm not able to find it f

[PHP-WIN] Warnings/Errors in PHP

2007-05-25 Thread Gustav Wiberg
Hi there! The server I'm connected to is not showing any warnings/error in PHP. Instead it just displays a blank page. How can I do in PHP-script to show errors/warning? I know this is possible, but I'm not able to find it for the moment. Best regards /Gustav Wiberg -- PHP Windows Mailin