Re: [PHP] Detecting \u0000 in a string...

2008-03-17 Thread Casey
On Mon, Mar 17, 2008 at 3:56 AM, Mikey <[EMAIL PROTECTED]> wrote: > Hi! > > I was wondering if anyone here had experienced a simliar problem to mine. > > I am updating an Oracle XMLType column with XML built using DOM that is > populated with values from an Excel spreadsheet saved out as a CSV.

Re: [PHP] Help for openssl_pkcs7_verify function

2008-03-17 Thread Stut
On 17 Mar 2008, at 21:34, Carlo Carbone wrote: I need help for this function to verify a p7m file . The funcion return always error value ( -1 ) this is the sintax that I use to verify the sign on the file openssl_pkcs7_verify("prova.p7m", PKCS7_BINARY ,"prova.pdf", array("c:\cert.pem") );

[PHP] Help for openssl_pkcs7_verify function

2008-03-17 Thread Carlo Carbone
I need help for this function to verify a p7m file . The funcion return always error value ( -1 ) this is the sintax that I use to verify the sign on the file openssl_pkcs7_verify("prova.p7m", PKCS7_BINARY ,"prova.pdf", array("c:\cert.pem") ); I 'm a winXP user and the path of PHP is place in th

[PHP] Re: help on using 'request_uri' to make a front-end site

2008-03-17 Thread Shawn McKenzie
Donn Ingle wrote: > Shawn McKenzie wrote: >> Use /index.php instead of index.php maybe... > I assume you meant in the tag. I tried that and the URL (when you > mouse-over the link) becomes [http://localhost/index.php] which is not > anywhere near where the files live. > > I must say I am rather c

[PHP] Semantic Web enabled Web applications with PHP

2008-03-17 Thread Sören Auer
Hi all, The largest obstacle for the uptake of the Semantic Web is still the lack of semantically represented data, information and knowledge. On the other hand the majority of Web pages already now is generated by database driven Web applications containing structured data (many of them writ

[PHP] Re: help on using 'request_uri' to make a front-end site

2008-03-17 Thread Donn Ingle
Shawn McKenzie wrote: > Use /index.php instead of index.php maybe... I assume you meant in the tag. I tried that and the URL (when you mouse-over the link) becomes [http://localhost/index.php] which is not anywhere near where the files live. I must say I am rather confused by this situation, but

Re: [PHP] PHP Hosting - Coupon

2008-03-17 Thread tedd
At 11:45 AM -0400 3/17/08, Daniel Brown wrote: Anyway, it's 50% off, comes with SSH/unlimited databases/blah/blah/blah. Ask for references here on the list and I don't think it'll be a problem to get some honest feedback from our peers here. Check it out (and don't mind the layout I'm a

[PHP] Re: PHP Hosting - Coupon

2008-03-17 Thread Daniel Brown
On Mon, Mar 17, 2008 at 11:45 AM, Daniel Brown <[EMAIL PROTECTED]> wrote: > As some of you are aware, my hosting company, PilotPig, has been > struggling a lot with phishers and fraud. Stolen PayPal accounts used > to pay for hosting accounts on my servers. As a result - and in > celebrati

[PHP] PHP Hosting - Coupon

2008-03-17 Thread Daniel Brown
As some of you are aware, my hosting company, PilotPig, has been struggling a lot with phishers and fraud. Stolen PayPal accounts used to pay for hosting accounts on my servers. As a result - and in celebration of the only holiday that I actually give a damn about - I'm doing a 50% off coupon

Re: [PHP] __halt_compiler()

2008-03-17 Thread Mikey
Shawn McKenzie wrote: Daniel Brown wrote: On Sun, Mar 16, 2008 at 4:18 PM, Casey <[EMAIL PROTECTED]> wrote: Hi list! __halt_compiler(). Does anyone use it? I've used it obsessively in my past two "projects" to store data (specifically CSV) in the PHP files. These two "projects" consisted o

Re: [PHP] __halt_compiler()

2008-03-17 Thread Shawn McKenzie
Daniel Brown wrote: > On Sun, Mar 16, 2008 at 4:18 PM, Casey <[EMAIL PROTECTED]> wrote: >> Hi list! >> >> __halt_compiler(). Does anyone use it? >> >> I've used it obsessively in my past two "projects" to store data >> (specifically CSV) in the PHP files. These two "projects" consisted of >> on

[PHP] Re: help on using 'request_uri' to make a front-end site

2008-03-17 Thread Shawn McKenzie
UsDonn Ingle wrote: > Hi, > I have been trying to get a little templating thing going and I want > everything to pass through a single index.php file which then decides what > page is wanted and includes them. > > The scheme is to go to a url like [http://localhost/~donn/blah/] which > serves ind

Re: [PHP] Is this the best way?

2008-03-17 Thread Jason Pruim
On Mar 14, 2008, at 7:44 PM, Jim Lucas wrote: Jason Pruim wrote: On Mar 14, 2008, at 5:03 PM, TG wrote: - Original Message - From: Jason Pruim <[EMAIL PROTECTED]> To: TG <[EMAIL PROTECTED]> Cc: "PHP General List" Date: Fri, 14 Mar 2008 14:56:32 -0400 Subject: Re: [PHP] Is this the

Re: [PHP] __halt_compiler()

2008-03-17 Thread Daniel Brown
On Sun, Mar 16, 2008 at 4:18 PM, Casey <[EMAIL PROTECTED]> wrote: > Hi list! > > __halt_compiler(). Does anyone use it? > > I've used it obsessively in my past two "projects" to store data > (specifically CSV) in the PHP files. These two "projects" consisted of > only one file, and I didn't wan

[PHP] Re: __halt_compiler()

2008-03-17 Thread Mikey
Casey wrote: > Hi list! > > __halt_compiler(). Does anyone use it? > > I've used it obsessively in my past two "projects" to store data > (specifically CSV) in the PHP files. These two "projects" consisted of > only one file, and I didn't want to clutter everything and involve > databases and/or X

Re: [PHP] GD / Pixel Font Rendering

2008-03-17 Thread Børge Holen
On Monday 17 March 2008 13:10:20 Jochem Maas wrote: > Børge Holen schreef: > > On Monday 17 March 2008 09:25:36 Jochem Maas wrote: > >> nihilism machine schreef: > >>> I am trying to render an 8 pixel pixel font without anti aliasing to > >>> look crisp (silkscreen) in 8pt with gd. the font is huge

Re: [PHP] GD / Pixel Font Rendering

2008-03-17 Thread Jochem Maas
Børge Holen schreef: On Monday 17 March 2008 09:25:36 Jochem Maas wrote: nihilism machine schreef: I am trying to render an 8 pixel pixel font without anti aliasing to look crisp (silkscreen) in 8pt with gd. the font is huge and ugly: -- any ideas? don't post twice. I recon he didn't.

[PHP] Detecting \u0000 in a string...

2008-03-17 Thread Mikey
Hi! I was wondering if anyone here had experienced a simliar problem to mine. I am updating an Oracle XMLType column with XML built using DOM that is populated with values from an Excel spreadsheet saved out as a CSV. My problem is that for certain (apparently) random rows the xml updated wi

Re: [PHP] GD / Pixel Font Rendering

2008-03-17 Thread Børge Holen
On Monday 17 March 2008 09:25:36 Jochem Maas wrote: > nihilism machine schreef: > > I am trying to render an 8 pixel pixel font without anti aliasing to > > look crisp (silkscreen) in 8pt with gd. the font is huge and ugly: > > > > > // Set the content-type > > header("Content-type: image/png"); >

[PHP] help on using 'request_uri' to make a front-end site

2008-03-17 Thread Donn Ingle
Hi, I have been trying to get a little templating thing going and I want everything to pass through a single index.php file which then decides what page is wanted and includes them. The scheme is to go to a url like [http://localhost/~donn/blah/] which serves index.php in that dir. That includes

Re: [PHP] How to get error context

2008-03-17 Thread Zoltán Németh
2008. 03. 14, péntek keltezéssel 10.03-kor It Maq ezt írta: > Here is the error message captured by my error > handling function: > > mysql_connect() [function.mysql-connect]: Access > denied for user 'admin'@'localhost' (using password: > YES) > > i put a wrong password and username the manual

Re: [PHP] GD / Pixel Font Rendering

2008-03-17 Thread Jochem Maas
nihilism machine schreef: I am trying to render an 8 pixel pixel font without anti aliasing to look crisp (silkscreen) in 8pt with gd. the font is huge and ugly: -- any ideas? don't post twice. use '8' instead of '20' for the fontsize. -- PHP General Mailing List (http://www.php.net/