Re: [PHP] XSLTProcessor help

2009-02-17 Thread Siegfried Gipp
On Monday, 16. February 2009 11:49:23 Tom Sparks wrote: > help, when I include > the XSLTProcessor only strips the XML tags and outputs the text see result That is the xsl default behaviour. You need templates to do anything other with xml elements than just digging deeper. This is somewhat lik

Re: [PHP] XSLTProcessor without validation

2008-02-16 Thread Siegfried Gipp
Am Freitag, 15. Februar 2008 15:35:02 schrieb Andrew Ballard: > It's there for me as well. (Firefox and IE6, Windows XP). Any chance you've > got a browser plugin or other "feature" that is blocking the image? I just tried it with Firefox in safe mode, same result: No captcha. -- PHP General Mai

Re: [PHP] XSLTProcessor without validation

2008-02-16 Thread Siegfried Gipp
the same result. I copied the url out of the source code and tried to load it directly and got nothing. Firefox 2.0.0.12, Kubuntu Linux. No idea. Regards Siegfried -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: XSLTProcessor without validation

2008-02-16 Thread Siegfried Gipp
Am Freitag, 15. Februar 2008 10:13:15 schrieb Peter Ford: > What if you don't have a DTD in the XML to validate it with? > I haven't tested it but it was something that worked in the Java XML > processing stuff. No DTD, no validation: simple! > So have you tried stripping the DOCTYPE declaration b

Re: [PHP] XSLTProcessor without validation

2008-02-14 Thread Siegfried Gipp
e this. From an accessibility point of view graphical captchas are a bad idea. Not existing, but required graphical captchas are an even worse idea. This way the bug report mechanism is essentially 100% inaccessible :) Regards Siegfried -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] XSLTProcessor without validation

2008-02-14 Thread Siegfried Gipp
p if an internet provider does not have this or does not allow executing this. > You could also consider filing a "Feature Request" in > http://bugs.php.net/ Thanks for that link. I'll try. Regards Siegfried -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] XSLTProcessor without validation

2008-02-14 Thread Siegfried Gipp
i use XSLTProcessor from within PHP to achieve the same result as if using xsltproc --novalid? Regards Siegfried -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP5 and XSLTProcessor: disable validation

2008-02-03 Thread Siegfried Gipp
his list :) regards Siegfried Gipp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] In need of help, plz

2005-04-12 Thread Siegfried
$id_2 => $task){ $w = 0; $l = 0; $c = 0; if(isset($task['c'])){ $w+= count($task['c']); $c = count($task['c']); } if(isset($task['l'])){ $w+= count($task['l']); $l = count($task['l']); } $width

[PHP] filesize & PHP 3

2001-05-09 Thread Siegfried Kettlitz
Hi, i have a filepointer $fp openend with fopen. Now my problem i to determine the actual filesize of that file with just the filepointer (not with filesize($filename) ) is there a way to do so in PHP 3 (not PHP4) ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [E

Re: [PHP] Converting a binary integer to a number

2001-05-07 Thread Siegfried Kettlitz
Thanx, I think that will save some time. > Use unpack(): > > // Grab as many signed 32-bit integers as possible > $array = unpack ('l*', $data); > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[PHP] Converting a binary integer to a number

2001-05-07 Thread Siegfried Kettlitz
I have binary data (ie: 0x7b c8 15 0c ) and want to convert it into a 32Bit integer (here: 123456789012). Currently I use this (intel-little-endian): $integer = hexdec( bin2hex( strrev( readpos( $fd,$position,4 ) ) ) ); readpos reads 4 bytes from a file Is there a better, faster or easier way t