[PHP] buttons don't work

2003-08-14 Thread Miguel Ribeiro
I've recently upgraded my webserver for apache 2.0.47 with php 4.3.2 on a solaris 9 box My problem is... the buttons on the php pages don't work and I can't figure why this is happening... Apache compiled like: ./configure --prefix=/opt/apache --activate-module=/opt/php/distribution/php-4.3.2/li

[PHP] APACHE/PHP - buttons don't work

2003-08-08 Thread Miguel Ribeiro
Hi, I've recently upgraded my webserver for apache 2.0.47 with php 4.3.2 on a solaris 9 box My problem is... the buttons on the php pages don't work and I can't figure why this is happening... Apache compiled like: ./configure --prefix=/opt/apache --activate-module=/opt/php/distribution/php-4.3

[PHP] FORMs (HELP) --- PHP Gurus (Please HELP)

2001-10-24 Thread Miguel Ribeiro
Hi, How can be possible to call other functions (that have a html pages) from a first function that also have a html with a form and pass all html variables without losing them? I've a problem that from a html form I'm losing all html variables and this is happening because this form is located

Re: [PHP] Passing vars between functions (with POSTs)

2001-05-16 Thread Miguel Ribeiro
Thanks for your reply but for example, my problem is more like the following php3: Login'); echo(''); echo(''); } function vrf_passwd($f1) { printf("Login=%s",$f1); } switch($s) { case 1: vrf_passwd($login); break; default: login(); break; } ?> "Rasmus Lerdorf" <[EMAIL PROTECTE

Re: [PHP] Passing vars between functions (with POSTs)

2001-05-16 Thread Miguel Ribeiro
ROTECTED]">news:9ds0ki$55i$[EMAIL PROTECTED]... this will ensure that the variable is a POST var vs a GET var too... function test() { global $HTTP_POST_VARS; echo $HTTP_POST_VARS['login']; } -- Chris Lee [EMAIL PROTECTED] ""Miguel Ribeiro"" &

[PHP] Passing vars between functions (with POSTs)

2001-05-14 Thread Miguel Ribeiro
Hi, I'm struggling to pass from 3 functions (and one of them have a html form POST) one simple variable called $login. Once in the function (that have form with POST) is calling a php3 without passing the $login (like: common.php3&login='someone') and since the next function doesn't have any rel