php-general Digest 20 Sep 2010 11:35:25 -0000 Issue 6950

2010-09-20 Thread php-general-digest-help
php-general Digest 20 Sep 2010 11:35:25 - Issue 6950 Topics (messages 308199 through 308201): Re: PHP Email Question 308199 by: Bostjan Skufca 308200 by: TR Shaw 308201 by: Joe Jackson Administrivia: To subscribe to the digest, e-mail:

[PHP] not able to connect to MySQL

2010-09-20 Thread MikeB
I have defined (just for testing) a user in my SQL named pubuser and granted it access to a database publications. Of course I also created the database and two tables. I can access and manipulate the tables via phpMyAdmin and I can log in to sql using pubuser via the command-line interface.

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Steve Staples
On Mon, 2010-09-20 at 14:56 -0400, Andy McKenzie wrote: Hey folks, I have the feeling this is a stupid question, but I can't even find anything about it. Maybe I'm just not searching for the right things. Here's the problem. I'm writing a lot of pages, and I hate going in and out of

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Rick Pasotto
On Mon, Sep 20, 2010 at 03:02:35PM -0400, TR Shaw wrote: On Sep 20, 2010, at 2:56 PM, Andy McKenzie wrote: Hey folks, I have the feeling this is a stupid question, but I can't even find anything about it. Maybe I'm just not searching for the right things. Here's the problem.

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Andy McKenzie
On Mon, Sep 20, 2010 at 3:47 PM, Steve Staples sstap...@mnsi.net wrote: On Mon, 2010-09-20 at 14:56 -0400, Andy McKenzie wrote: Hey folks,   I have the feeling this is a stupid question, but I can't even find anything about it.  Maybe I'm just not searching for the right things.   Here's

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Andy McKenzie
On Mon, Sep 20, 2010 at 3:50 PM, Rick Pasotto r...@niof.net wrote: On Mon, Sep 20, 2010 at 03:02:35PM -0400, TR Shaw wrote: On Sep 20, 2010, at 2:56 PM, Andy McKenzie wrote: Hey folks,  I have the feeling this is a stupid question, but I can't even find anything about it.  Maybe I'm

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Peter Lind
On 20 September 2010 21:56, Andy McKenzie amckenz...@gmail.com wrote: On Mon, Sep 20, 2010 at 3:50 PM, Rick Pasotto r...@niof.net wrote: On Mon, Sep 20, 2010 at 03:02:35PM -0400, TR Shaw wrote: On Sep 20, 2010, at 2:56 PM, Andy McKenzie wrote: Hey folks,  I have the feeling this is a

Re: [PHP] not able to connect to MySQL

2010-09-20 Thread Bastien Koert
On Mon, Sep 20, 2010 at 3:37 PM, MikeB mpbr...@gmail.com wrote: I have defined (just for testing) a user in my SQL named pubuser and granted it access to a database publications. Of course I also created the database and two tables. I can access and manipulate the tables via phpMyAdmin and I

[PHP] Re: Auto-generating HTML

2010-09-20 Thread Carlos Medina
Am 20.09.2010 20:56, schrieb Andy McKenzie: Hey folks, I have the feeling this is a stupid question, but I can't even find anything about it. Maybe I'm just not searching for the right things. Here's the problem. I'm writing a lot of pages, and I hate going in and out of PHP. At the

[PHP] Invalid chars in XML

2010-09-20 Thread robert mena
Hi, I am trying to parse a XML file with simplexml_load but it gave me error. While inspecting the contents I found a inside the value of a tag. tagsomething something/tag. After I've removed the everything went fine. So which chars I should not put in my file? Should I use some

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Andy McKenzie
On Mon, Sep 20, 2010 at 3:59 PM, Peter Lind peter.e.l...@gmail.com wrote: On 20 September 2010 21:56, Andy McKenzie amckenz...@gmail.com wrote: On Mon, Sep 20, 2010 at 3:50 PM, Rick Pasotto r...@niof.net wrote: On Mon, Sep 20, 2010 at 03:02:35PM -0400, TR Shaw wrote: On Sep 20, 2010, at 2:56

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Andy McKenzie
Here's a related question maybe one of you can answer: is there any place in HTML (not PHP, but actually in HTML) where there's a difference between a single quote and a double quote? As nearly as I can tell, it shouldn't ever matter. If that's the case, using double-quotes to enclose an echo

Re: [PHP] Invalid chars in XML

2010-09-20 Thread Bastien Koert
On Mon, Sep 20, 2010 at 4:07 PM, robert mena robert.m...@gmail.com wrote: Hi, I am trying to parse a XML file with simplexml_load but it gave me error.  While inspecting the contents I found a inside the value of a tag. tagsomething something/tag. After I've removed the everything went

Re: [PHP] Auto-generating HTML

2010-09-20 Thread Bastien Koert
On Mon, Sep 20, 2010 at 4:52 PM, Andy McKenzie amckenz...@gmail.com wrote: Here's a related question maybe one of you can answer:  is there any place in HTML (not PHP, but actually in HTML) where there's a difference between a single quote and a double quote?  As nearly as I can tell, it

[PHP] Re: not able to connect to MySQL

2010-09-20 Thread MikeB
Bastien Koert wrote: On Mon, Sep 20, 2010 at 3:37 PM, MikeBmpbr...@gmail.com wrote: I have defined (just for testing) a user in my SQL named pubuser and granted it access to a database publications. Of course I also created the database and two tables. I can access and manipulate the tables

[PHP] Building SoapClient as an extension

2010-09-20 Thread Jon Drukman
Is it possible to build SoapClient as a loadable extension? For various reasons, I don't want to have to recompile PHP from scratch. It would be much simpler to just distribute another .so and .ini file. How would I do that, if it's possible? -jsd- -- PHP General Mailing List

Re: [PHP] Invalid chars in XML

2010-09-20 Thread Ellis Antaya
CDATA tags is what you need --- Ellis (Sent from my iPod) On 2010-09-20, at 16:57, Bastien Koert phps...@gmail.com wrote: On Mon, Sep 20, 2010 at 4:07 PM, robert mena robert.m...@gmail.com wrote: Hi, I am trying to parse a XML file with simplexml_load but it gave me error. While

Re: [PHP] Building SoapClient as an extension

2010-09-20 Thread Phpster
It's already done http://wso2.com/products/web-services-framework/php/ Bastien Sent from my iPod On Sep 20, 2010, at 19:20, Jon Drukman j...@cluttered.com wrote: Is it possible to build SoapClient as a loadable extension? For various reasons, I don't want to have to recompile PHP from

[PHP] Re: Building SoapClient as an extension

2010-09-20 Thread Jon Drukman
Phpster phpster at gmail.com writes: It's already done http://wso2.com/products/web-services-framework/php/ I don't know what that has to do with what I asked. I found the answer on my own: ./configure --enable-soap=shared Produces a modules/soap.so file that can be loaded in to php