[PHP] escaping quotes

2005-01-27 Thread Giles
Hi Guys Really simple question. How do I change the following: print(value=' . $attributes[messageSubject] . '); to have double quotes around the subject field instead. i.e.: print(value= . $attributes[messageSubject] . ); thanks Giles Roadnight http://giles.roadnight.name -- PHP General

RE: [PHP] escaping quotes

2005-01-27 Thread Giles
Thanks, that works great. Knew that worked for JavaScript but didn't know it worked for PHP. Giles Roadnight http://giles.roadnight.name -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: 27 January 2005 17:07 To: John Holmes Cc: Giles; php-general@lists.php.net

RE: [PHP] IE title bug

2004-11-23 Thread Giles
have the problem. Thanks for the reply though. Giles Roadnight http://giles.roadnight.name -Original Message- From: Gryffyn, Trevor [mailto:[EMAIL PROTECTED] Sent: 23 November 2004 16:17 To: [EMAIL PROTECTED] Cc: Giles Subject: RE: [PHP] IE title bug This is probably more of a straight

[PHP] IE title bug

2004-11-22 Thread Giles
as this is required by the client. Possibly it is something to do with that? Anyone seen anything like this before or have any suggestions? Thanks Giles Roadnight http://giles.roadnight.name

[PHP] help with fopen path

2004-11-09 Thread Giles Roadnight
or the class (obviously not) or my switch file or what? Hope someone can help. Giles Roadnight http://giles.roadnight.name

[PHP] blank function parameters

2004-11-03 Thread Giles Roadnight
Hello If I defined a function with 4 parameters but only pass 3 I get an error. Is there anyway around this? I want to be able to set the missing parameter to a default value if it is not passed which works ok but How do I get rid of the error message? Thanks Giles Roadnight http

RE: [PHP] Re: blank function parameters

2004-11-03 Thread Giles Roadnight
Thanks for all the help guys, working great now. Giles Roadnight http://giles.roadnight.name -Original Message- From: Daniel Schierbeck [mailto:[EMAIL PROTECTED] Sent: 03 November 2004 18:37 To: [EMAIL PROTECTED] Subject: [PHP] Re: blank function parameters Matthew Weier O'Phinney

[PHP] dba_open, dba_popen, caches, not closing database, etc..

2002-10-24 Thread Giles Constant
opens the database and syncs all writes, but it doesn't automatically close it (without the use of a destructor, there isn't anywhere I could sensibly put code to do it). I've tried dba_open and dba_popen, and both demonstrate the same problem. Anybody got any tips for this? -- Giles Constant

Re: [PHP] dba_open, dba_popen, caches, not closing database, etc..

2002-10-24 Thread Giles Constant
that'll do it.. cheers :-) -- Giles Constant, Systems Programmer Hyperlink Interactive http://www.hyperlink-interactive.co.uk On Thu, 24 Oct 2002, Marek Kilimajer wrote: You can use register_shutdown_function(). Giles Constant wrote: Hi People, I'm having problems with the dba