[PHP] XML Parser is a bit strict

2001-01-18 Thread Butler, Shaun
I am using php 4.02 and Apache 1.3.12 and am trying to do some XML parsing. HTML is also in the text I'm parsing and the xml parsing dies if it sees an html tag that does not have a matching closing tag. Is there any work around to this and if so is there a way to make it so XML tags don't

[PHP] Apache config + PHP include paths

2001-06-21 Thread Butler, Shaun
is there a way to set up a different include path per virtual host in the apache config or in the php.ini ? so www.blahblah.com would have /www/libs as the include path and www.moomoo.com would have /www/moo -- Shaun -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] encryption methods?

2001-07-13 Thread Butler, Shaun
check out the crypt() function http://www.php.net/manual/en/function.crypt.php if you don't care about decrypting the password this works fine. --Shaun On Friday 13 July 2001 15:26, Johnson, Kirk wrote: One approach to password security is to put the passwords in a file outside Document

[PHP] foreach OCIBindByName()

2001-02-14 Thread Butler, Shaun
So I want to bind multiple values that are in an associative array I have this code foreach ($binds as $key=$value) { OCIBindByName($this-m_cursor,":$key",$value,-1); } but it only seems to work for one

Re: [PHP] foreach OCIBindByName()

2001-02-14 Thread Butler, Shaun
On Wednesday 14 February 2001 17:55, you wrote: On Wed, Feb 14, 2001 at 12:35:10PM +, Butler, Shaun wrote: So I want to bind multiple values that are in an associative array I have this code foreach ($binds as $key=$value

Re: [PHP] PERL vs. PHP

2001-04-20 Thread Butler, Shaun
maybe for basics but in general no way, I think going the other way, from Perl to PHP is a much easier transition. - Shaun On Friday 20 April 2001 17:10, Jason Caldwell wrote: If I know PHP will I *basically* know PERL? Looking at some PERL code... it looks nearly identical. Thanks.