[PHP] how to use saxon.jar from php?

2002-03-04 Thread Jakob
? Or is this too resource-hungry, and should be avoided in a production environment? Thanks for your help in advance, -- Jakob. PS: cc'ing me is appreciated, as I am on the digest list. thanks. -- Jakob. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Design Problem

2002-05-30 Thread jakob
the ? character. to overcome this, you should use url rewrite mechanisms which can turn http://www.example.com/page.php?key1=val1key2=val2 to http://www.example.com/page/val1/val2 hth, Jakob. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] MORE Design Problem

2002-05-30 Thread jakob
http://httpd.apache.org/docs/mod/mod_rewrite.html hth, Jakob. http://www.phpbuilder.com/columns/tim2526.php3 - James -- W: www.londontown.com @: [EMAIL PROTECTED] -- -Original Message- From: Dani [mailto:[EMAIL PROTECTED

[PHP] Problem with ImageMagick and PHP on Windows

2001-09-21 Thread Jakob
: Missing an image file name. How can I make this work through PHP on Windows? Thanks for your help. CC to my email appreciated, as I am on the digest list. Thanks, Jakob. Jakob - icq #69728667 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] how to find out the mysql version from php?

2001-07-10 Thread Jakob
WHERE name REGEXP BINARY ^b; is there a way to find out _programmatically_ which version of mysql is running (phpinfo() gives some information, but i don't know how this can be accessed) on the server. thanks in advance, Jakob. PS: please cc me, i am on the very long digest list. -- PHP

[PHP] zlib.output_compression, how to turn it OFF?

2001-05-10 Thread Jakob Kruse
Hi. I have turned on zlib.output_compression in my PHP 4.0.5 php.ini file, and it works beautifully. But if I want to turn off all buffering/compression for a single page, how do I do that? Regards, Jakob Kruse -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: Re[2]: [PHP] Newbie redirect/variable question

2001-05-10 Thread Jakob Kruse
You should probably urlencode the address first, like this: a href=redirect.php?fred=?php echo urlencode(www.fusion.org.au) ?test link/a Not sure if it solves the problem though. Regards, Jakob Kruse Steve Wade [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL P

Re: [PHP] WEIRD, WEIRD problem with upgrade to 4.0.5

2001-05-10 Thread Jakob Kruse
Ehm... did you enable the ? ? tags in the php.ini file? If the code is being shown on the page it stands to reason that PHP did not process the page at all. Regards, Jakob Kruse Maxim Maletsky [EMAIL PROTECTED] wrote in message DC017B079D81D411998C009027B7112A015ED198@EXC-TYO-01

Re: [PHP] SESSIONS: Why does PHP not erase session files in /TMP

2001-05-10 Thread Jakob Kruse
collection every time a session starts. Lower values should work as well, just with a little delay. Regards, Jakob Kruse Davor Pleskina [EMAIL PROTECTED] wrote in message 9ddf72$j2t$[EMAIL PROTECTED]">news:9ddf72$j2t$[EMAIL PROTECTED]... I have /TMP configured as tmp dir for session files.

Re: Re[2]: [PHP] Newbie redirect/variable question

2001-05-10 Thread Jakob Kruse
Well, that just means you have to rewrite the line: header(Location: $HTTP_GET_VARS['fred']); like this: header(Location: . $HTTP_GET_VARS['fred']); But have you tried it with just $fred? You shouldn't have to use $HTTP_GET_VARS. Regards, Jakob Kruse Steve Wade [EMAIL PROTECTED] wrote

Re: [PHP] Php.ini style change

2001-05-11 Thread Jakob Kruse
no problem separating the comment lines from the rest. Such is life - always people to disagree with ;-) Regards, Jakob Kruse Jonatan Bagge [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Can anyone tell me why they checnged the style of the php.ini file.

Re: [PHP] include(../file.inc);

2001-05-11 Thread Jakob Kruse
You may need to set your include_path to . in php.ini. Than again maybe not. Try it. Then include ../file.inc should work (on Unix or Linux, use \ on Windows). Regards, Jakob Kruse Matthew Ralston [EMAIL PROTECTED] wrote in message 9dgfbo$kom$[EMAIL PROTECTED]">news:9dgfbo$kom$[EMAIL P

Re: [PHP] zlib or gzip compression?

2001-05-16 Thread Jakob Kruse
. Regards, Jakob Kruse Alex Dupre [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... What are the differences between output_handler = ob_gzhandler and zlib.output_compression = On ? Alex Dupre -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] exit in function

2001-05-18 Thread Jakob Kruse
it to print foo1 and then nothing more. But instead Apache crashes. Why? Regards, Jakob Kruse PS: I know it isn't very nice to use exit that way, but I'm trying to run some PHP software that uses it extensively. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Netscape 6, What a piece of s$#@ , anyone else had problems with php and Netscape 6?

2001-05-19 Thread Jakob Kruse
. It really is quite nice, and it *will* teach you how to write compliant HTML. Regards, Jakob Kruse Brandon Orther [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... This is the HTML that is returned by PHP. Does anyone know why Netscape Would have problems

Re: [PHP] mysql_free_result() question

2001-06-23 Thread Jakob Kruse
. Using mysql_free_result on a row is not advisable. Also, in my terminology, the query would be the string passed to mysql_query(), so you could do like this: $query = select ...; $result = mysql_query($query); $row = ... Regards, Jakob Kruse Chris Cameron [EMAIL PROTECTED] wrote in message [EMAIL

[PHP] 4.3.11 and PEAR

2005-04-01 Thread Jakob Goldbach
Hi, What happened to all the pear packages that were in 4.3.10 ? I don't see this change in the changelog :-) $ tar ztf php-4.3.10.tar.gz | grep tar | grep pear php-4.3.10/pear/packages/HTTP-1.2.2.tar php-4.3.10/pear/packages/Net_Socket-1.0.1.tar php-4.3.10/pear/packages/Mail-1.1.3.tar

[PHP] Re: Auto refresh

2003-06-03 Thread Jakob Mund
My advice to you is to use javascript.. Kurosh Burris [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED] Hi Everyone, I'm now trying to add an auto refresh in a .php file, so that it automatically refreshes the same page every 15 mins. Is there an upper limit to the header()

[PHP] Re: convert seconds to hours, minutes, seconds

2003-06-04 Thread Jakob Mund
). then u substract the number of ( hours*3600 + minutes*60 ) from 178607 and you got the seconds.. :-) Jakob 'iNstinct' Mund :) Chinmoy Barua [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED] Hello everybody, I have a value 178607, which is stored as seconds. I like to convert

[PHP] Delegating variable-length argument lists

2010-07-02 Thread Jakob Günther
'), $sParams); } But this is not working, because I need to pass it by reference. Is there a way to retrieve references to a variable number of arguments? Thx, Jakob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Delegating variable-length argument lists

2010-07-02 Thread Jakob Günther
. But if i call the bind-param-method from another class it did not work. Do you have any suggestions on this? Am 02.07.2010 17:25, schrieb Jakob Günther: Hi, i'm writing a custom wrapper for the mysqli_stmt class. I have to override the method mysqli_stmt::bind_param. This function uses

Re: [PHP] Delegating variable-length argument lists

2010-07-05 Thread Jakob Günther
Am 02.07.2010 19:34, schrieb Adam Richardson: On Fri, Jul 2, 2010 at 11:49 AM, Jakob Günther macgu...@web.de mailto:macgu...@web.de wrote: I did not find a solution, so i tried passing a array with references. $arr = array($a, $b); bind_param(ii, $arr); function

Re: [PHP] Unix passwd file

2002-10-04 Thread Jakob Breivik Grimstveit
Scott wrote: [...] does anyone know if I populate a MySQL table with the login/password can php then use that encrypted password to validate users? http://www.php.net/manual/en/function.crypt.php should be the answer to your questions. -- jakob -- PHP General Mailing List (http