[PHP] GET variable unexpectedly assigned to session variable

2007-05-10 Thread Armando Acosta
the problem. I will appreciate any help, suggestion, idea currently I am (honestly) clue less... Thank you in advance. --Armando--.

Re: [PHP] java .vs php

2005-11-09 Thread Armando Afá
Hi bruce, Programming can be as good as the programer can be. If you look at the google site, how it works, how many concurrent processes that code can do, you realize that tools available for this purposes (Phyton, Perl, PHP java) do what you want them to do. Just try to take a look to

Re: [PHP] Windows and Query String

2005-04-18 Thread Armando Afá
See the register_global my friend maybe it is set off - Original Message - From: Greg Deckler [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Monday, April 18, 2005 10:10 AM Subject: [PHP] Windows and Query String I have searched for this in the FAQ's, News Archives and Googled

[PHP] PHP-NUKE on IIS

2005-03-21 Thread Armando Afa
It is posible to install php-nuke on IIS? Thanks in advance Armando

[PHP] PHP-NUKE

2005-03-21 Thread Armando Afa
Hi, I've already downloaded ver 7.2 of php-nuke, but it does not tell how to install it on Windows environment. Can somebody tell me where did I go wrong? I've have always follos the instruction manual but it does no work with IIS Thanks in advance, once again Armando

[PHP] Richiesta collaborazioni

2002-12-23 Thread Armando
Salve, A chiunque possa interessare, cerco persone su Napoli con cui avere scambi di pareri e info circa PHP/MySQL, eventualmente ci sarebbero opportunità lavorative. Saluti -- Armando Alario ICQ# 172677921 -- Armando Alario ICQ# 172677921 -- PHP General Mailing List (http

[PHP] Running a Shell Script in PHP HELP!

2001-09-30 Thread Armando Cerna
snipit of my code $files = `updatemp`; if ($files) { print $filesbr; print I am god; } else { print $files; print It's ok you'll get it working. =); } The contents of the updatemp file is as follows smbclient //machine/c -I 192.168.0.4 -U armando%secret -D a1 -c 'lcd

Re: [PHP] Running a Shell Script in PHP HELP!

2001-09-30 Thread Armando Cerna
it in the system call. - k - Original Message - From: Armando Cerna [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 30, 2001 7:14 PM Subject: [PHP] Running a Shell Script in PHP HELP! I have a shell script that I am executing like this $files = `shellscript

Re: [PHP] Running a Shell Script in PHP HELP!

2001-09-30 Thread Armando Cerna
On Sunday 30 September 2001 04:31 pm, Matt Greer wrote: On Sunday 30 September 2001 18:23, Armando Cerna wrote: I have tried system (updatemp) and exec (updatemp) The system() function requires a string as its argument. So you need to write it as system(updatemp); or system($files); Matt