Re: [PHP] I cannot figure out why this is not working?

2007-06-03 Thread Jim Lucas
Brad Sumrall wrote: ?php { What? why is this here? $to = ([EMAIL PROTECTED],[EMAIL PROTECTED]); why parenthesis around string definition? $subject = online guestbook register; $email = $_POST['email'] . \n; $headers = Reply-To: . $_POST['email'] . \n; $body = Visitor Infomation: .

Re: [PHP] Cant set info in DB...HELP

2007-06-03 Thread Tijnema
On 6/3/07, Stut [EMAIL PROTECTED] wrote: K. Hayes wrote: What lists are you referring to? Also this is how the examples show I've seen. I mean hit Reply to all in your mail client. That way you include the email address of the PHP General mailing list so everyone, including the archives, can

Re: [PHP] Cant set info in DB...HELP

2007-06-03 Thread kvigor
Thanks All. Made the changes and just like Ambien it worked like a Dream. I found out that I had a typo in my DB and missing ) I corrected it. All is well. Tijnema wrote in message news:[EMAIL PROTECTED] On 6/3/07, Stut [EMAIL PROTECTED] wrote: K. Hayes wrote: What lists are you referring

[PHP] Re: I cannot figure out why this is not working?

2007-06-03 Thread Jonesy
On Sat, 2 Jun 2007 18:34:36 -0400, Brad Sumrall queried: I cannot figure out why this is not working? Just as soon as the Crack gmane.comp.php.general Mind Reading Team revealss your meaning of not working, someone will get back to you. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: How can I DomDocument-renameNode?

2007-06-03 Thread itoctopus
Create a copy manually and then rename the node. -- itoctopus - http://www.itoctopus.com Eric Wiener [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Apparently renameNode is not yet implemented into Dom, so how can I rename a node without affecting its value and/or child nodes? I

[PHP] Re: How can I DomDocument-renameNode?

2007-06-03 Thread tedd
I have tried making a new node, inserting it before the old node then removing the old node but I could not figure out how to get the nodeValue to include the child nodes, so they get stripped out leaving only the text value. You might try something like this: function replaceNode() {

[PHP] Single Sign On

2007-06-03 Thread Sudheer Satyanarayana
Hi, We have three web sites a) example1.com b) example2.com c) my.example2.com Our sites include exclusive pages for registered users. All user account management tasks are handled by my.example2.com including registration, modification, cancellation, etc. We would like to create a single

Re: [PHP] Single Sign On

2007-06-03 Thread Robert Cummings
On Mon, 2007-06-04 at 08:06 +0530, Sudheer Satyanarayana wrote: Hi, We have three web sites a) example1.com b) example2.com c) my.example2.com Our sites include exclusive pages for registered users. All user account management tasks are handled by my.example2.com including

[PHP] Is the GD module standard?

2007-06-03 Thread Dave M G
PHP General, I have been using the imagepng() function in my local testing environment for a while now to make CAPTCHA images. In my testing environment, I hadn't done any customization to my PHP set up. I went with the default set of installation options that Ubuntu offers for a LAMP

Re: [PHP] Is the GD module standard?

2007-06-03 Thread Robert Cummings
On Mon, 2007-06-04 at 12:47 +0900, Dave M G wrote: PHP General, I have been using the imagepng() function in my local testing environment for a while now to make CAPTCHA images. In my testing environment, I hadn't done any customization to my PHP set up. I went with the default set of

Re: [PHP] Is the GD module standard?

2007-06-03 Thread Greg Donald
On 6/3/07, Robert Cummings [EMAIL PROTECTED] wrote: Every host I've ever used has had GD installed. If they didn't offer GD, I'd switch. I think it's a safe bet to assume most realistic hosts have GD. Same here. Been using it for years, never had to ask for it to be installed. -- Greg