Re: [PHP] Need to recompile php 4.3.4

2006-06-17 Thread Mauricio Pellegrini
optimizer continues to work perfectly after the whole process I would like to hear some experienced user comments about this Thanks Mauricio On Fri, 2006-06-16 at 21:48, chris smith wrote: On 6/17/06, Mauricio Pellegrini [EMAIL PROTECTED] wrote: Hi , In order to enable bcmath I need

[PHP] bcdiv() function not recognized

2006-06-16 Thread Mauricio Pellegrini
Hi all, I'm usuing bcdiv like this $someVar=bcdiv($timedifference,86400); and it works perfectly on my local server apache 1.329 , php 4.34 and suse 8.2 But when I put that module on the production server I get this error Fatal error:Call to undefined function:bcdiv() in /www/tst.php on

[PHP] Need to recompile php 4.3.4

2006-06-16 Thread Mauricio Pellegrini
Hi , In order to enable bcmath I need to recompile php 4.3.4 on suse 8.2. but , I would like to preserve the actual installation just in case anything goes wrong ( as this is my production server) What files should I backup / restore if after compilation php is not working? My actual

[PHP] How to execute multiples querys

2006-04-26 Thread Mauricio Pellegrini
Hi all I'm trying to execute two querys and they execute perfectly in fact, but after the execution of the first query there suposed to be some variable setted to a certain value. The problem is this variable is not available at the time the second query runs. I`ll try to explain a little bit

Re: [PHP] How to execute multiples querys

2006-04-26 Thread Mauricio Pellegrini
On Wed, 2006-04-26 at 10:32, nicolas figaro wrote: Mauricio Pellegrini a écrit : Hi all I'm trying to execute two querys and they execute perfectly in fact, but after the execution of the first query there suposed to be some variable setted to a certain value. The problem

Re: [PHP] How to execute multiples querys

2006-04-26 Thread Mauricio Pellegrini
On Wed, 2006-04-26 at 11:04, chris smith wrote: On 4/26/06, Mauricio Pellegrini [EMAIL PROTECTED] wrote: On Wed, 2006-04-26 at 10:32, nicolas figaro wrote: Mauricio Pellegrini a écrit : Hi all I'm trying to execute two querys and they execute perfectly in fact, but after

Re: [PHP] How to execute multiples querys

2006-04-26 Thread Mauricio Pellegrini
On Wed, 2006-04-26 at 11:09, nicolas figaro wrote: Mauricio Pellegrini a écrit : $quer1 = SET @var1=3 ; SELECt * from table1 Where [EMAIL PROTECTED] ; This gave a syntax error from MySQL inmmediately before the ; (semicolon), did you try to run the query above

Re: [PHP] How to execute multiples querys

2006-04-26 Thread Mauricio Pellegrini
On Wed, 2006-04-26 at 11:04, chris smith wrote: On 4/26/06, Mauricio Pellegrini [EMAIL PROTECTED] wrote: On Wed, 2006-04-26 at 10:32, nicolas figaro wrote: Mauricio Pellegrini a écrit : Hi all I'm trying to execute two querys and they execute perfectly in fact, but after

Re: [PHP] How to execute multiples querys,IT is SOLVED!!

2006-04-26 Thread Mauricio Pellegrini
you Thank you all MAuricio 2006/4/26, Mauricio Pellegrini [EMAIL PROTECTED]: Hi all I'm trying to execute two querys and they execute perfectly in fact, but after the execution of the first query there suposed to be some variable

Re: [PHP] How to execute multiples querys

2006-04-26 Thread Mauricio Pellegrini
On Wed, 2006-04-26 at 13:48, Robert Cummings wrote: On Wed, 2006-04-26 at 10:36, Mauricio Pellegrini wrote: On Wed, 2006-04-26 at 11:09, nicolas figaro wrote: Mauricio Pellegrini a écrit : $quer1 = SET @var1=3 ; SELECt * from table1 Where [EMAIL PROTECTED

[PHP] Help retrieving an HTML array

2006-02-01 Thread Mauricio Pellegrini
Hi , I have a HTML page with a form in which there are some inputs like these: input type=text name=xname value=3303 input type=text name=xname value=9854 input type=text name=xname value=n... the name of the input is always the same ( xname ) This

Re: [PHP] Help retrieving an HTML array

2006-02-01 Thread Mauricio Pellegrini
Thank you all for your valuable support. The problem is solved. Note: This kind of input definition (without the brackets) actually *DOES* create an array under HTML 4.x (and its subindexes are accesible thru javascript) input type=text name=xname value=3303 input type=text

Re: [PHP] Session expires randomly

2005-09-08 Thread Mauricio Pellegrini
On Tue, 2005-09-06 at 19:43, Philip Hallstrom wrote: On Tue, 6 Sep 2005, Mauricio Pellegrini wrote: You were right! That was exactly the problem after reading your message, I 've verified the value for gc_maxlifetime and found that it was set to 1440 secs in other words 24 minutes

Re: [PHP] Session expires randomly

2005-09-06 Thread Mauricio Pellegrini
at 14:20, [EMAIL PROTECTED] wrote: On Fri, 2 Sep 2005, Mauricio Pellegrini wrote: Hi, I have this problem , When I start a Session everything seems to be ok but sometimes with no reason the session vanishes. All settings are default , I mean session_cache_expire is 180 min. I

[PHP] Session expires randomly

2005-09-02 Thread Mauricio Pellegrini
Hi, I have this problem , When I start a Session everything seems to be ok but sometimes with no reason the session vanishes. I'm using PHP 4.3.4 as a Apache module. Apache version is 1.3 under Suse Linux 8.2 All settings are default , I mean session_cache_expire is 180 min. I understand that

[PHP] How to add .zip or gzip compression to the php module

2005-08-09 Thread Mauricio Pellegrini
Hi , This time I'm trying to add support for compressed files into the PHP module version 4.3.4 running with Apache 1.3.29 I remember adding dbase and mysql support with the following command './configure' '--with-mysql' '--with-apxs=/usr/local/apache/bin/apxs' '-enable-dbase' Now I need to

Re: [PHP] Can I retrieve a stored php session variable from within a javascript function?

2005-08-08 Thread Mauricio Pellegrini
Thanks for your advice. I've heard of this technique before but wanted to know if there was another way to do it from Javascript. Regards Mauricio On Sat, 2005-08-06 at 11:05, Burhan Khalid wrote: Mauricio Pellegrini wrote: Hi , I wonder if it's possible to retrieve the value from a php

Re: [PHP] Can I retrieve a stored php session variable from within a javascript function?

2005-08-08 Thread Mauricio Pellegrini
Thanks Rick, it helped. also I'll do some reading about AJAX (as soon as I can..) Regards Mauricio On Sat, 2005-08-06 at 11:58, Rick Emery wrote: Quoting Mauricio Pellegrini [EMAIL PROTECTED]: Hi , I wonder if it's possible to retrieve the value from a php session variable from within

[PHP] Can I retrieve a stored php session variable from within a javascript function?

2005-08-05 Thread Mauricio Pellegrini
Hi , I wonder if it's possible to retrieve the value from a php session variable from within a javascript function. Does anyone have any ideas about this? Thank you Mauricio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to execute local applications on the client

2005-06-08 Thread Mauricio Pellegrini
this on MSIE. On 6/7/05, Mauricio Pellegrini [EMAIL PROTECTED] wrote: Hi, sorry if what I am asking makes no sense, but here it goes.. Some one has asked me to set a web page from within wich users could launch local applications. Those applications are allready installed in the client

[PHP] How to execute local applications on the client

2005-06-07 Thread Mauricio Pellegrini
Hi, sorry if what I am asking makes no sense, but here it goes.. Some one has asked me to set a web page from within wich users could launch local applications. Those applications are allready installed in the client PC. The link on the web page would act as a simple link to start the

Re: [PHP] How to add Zlib support

2004-08-24 Thread Mauricio Pellegrini
Curt Zirzow wrote: * Thus wrote Mauricio Pellegrini: It's a requisite that the compression library has to be zlib. I don't know how to do that. I guess I should reconfigure with './configure' '--with-mysql' '--with-apxs=/usr/local/apache/bin/apxs

[PHP] How to add zlib support

2004-08-23 Thread Mauricio Pellegrini
Hi , On March 9th this year I 've compiled and installed php 4.3.4 on SuSe linux Server with apache 1.3. The configure command was this: './configure' '--with-mysql' '--with-apxs=/usr/local/apache/bin/apxs' '-enable-dbase' Nowadays I'm urged to install

[PHP] How to add Zlib support

2004-08-23 Thread Mauricio Pellegrini
Hi , On March 9th this year I 've compiled and installed php 4.3.4 on SuSe linux Server with apache 1.3. The configure command was this: './configure' '--with-mysql' '--with-apxs=/usr/local/apache/bin/apxs' '-enable-dbase' Nowadays I'm urged to install