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
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
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
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
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
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
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
his list :)
regards
Siegfried Gipp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
$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
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
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]
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
12 matches
Mail list logo