Re: [PHP-DB] Undefined variable

2004-05-26 Thread Daniel Clark
Are you using a FORM Post or Get ? Perhaps $_POST['Name'] or $_GET['Name'] >>Hi!! >> >>I have a very simple and smail script with just one input text box and a >>submit button. >>After that, I have an echo function in the same code page that just >>displays the data entered in the text box. >>

RE: [PHP-DB] Undefined variable

2004-05-26 Thread Miguel Guirao
Thanks so much!!! Miguel Guirao Servicios Datacard www.SIASA.com.mx -Mensaje original- De: Viorel Dragomir [mailto:[EMAIL PROTECTED] Enviado el: MiƩrcoles, 26 de Mayo de 2004 09:55 a.m. Para: Miguel Guirao; PHP DB List Asunto: Re: [PHP-DB] Undefined variable echo $_REQUEST['

Re: [PHP-DB] Undefined variable

2004-05-26 Thread Viorel Dragomir
echo $_REQUEST['Name']; - Original Message - From: Miguel Guirao To: PHP DB List Sent: Wednesday, May 26, 2004 17:47 Subject: [PHP-DB] Undefined variable Hi!! I have a very simple and smail script with just one input text box and a submit button. After that, I hav

Re: [PHP-DB] undefined variable? how could it be?

2002-08-15 Thread Jason Wong
On Friday 16 August 2002 02:22, Bo wrote: > basically this a code for uploading images and text info into a mysql > database, however, when I execute this code, an error occured as: > Undefined variable: action in \phpmySQL\add.php on line 2 > what will be the problem? php.ini -> register_globals

Re: [PHP-DB] undefined variable? how could it be?

2002-08-15 Thread Dejan Rajic
This is CorpseEater's reply on your message send to him on 8/15/2002 : Sorry - i made a mistake : it's '&&' instead of '||' -snatch-- Bo> if ((isset($action)&&($action == "upload")) { snatch- -- Greets [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php

Re: [PHP-DB] undefined variable? how could it be?

2002-08-15 Thread Dejan Rajic
This is CorpseEater's reply on your message send to him on 8/15/2002 : Bo> basically this a code for uploading images and text info into a mysql Bo> database, however, when I execute this code, an error occured as: Bo> Undefined variable: action in \phpmySQL\add.php on line 2 Bo> what will be the

RE: [PHP-DB] Undefined Variable and argument not valid . . .

2001-02-14 Thread John Halladay
Is it possible to add, subtract, etc on values as I am demonstrating below. I'm getting an error with this. I want to be able to add the values of CMAPER and CMUPER when displayed. printf("%s%s\n", $myrow["CMPLNDESC"], $myrow["CMAPER"+"CMUPER"]); Thanks, John -- PHP Database Mailing List (htt

Re: [PHP-DB] Undefined Variable and argument not valid . . .

2001-02-14 Thread Jorge Santos
rge [EMAIL PROTECTED] - Original Message - From: John Halladay <[EMAIL PROTECTED]> To: 'Jorge Santos' <[EMAIL PROTECTED]> Sent: Wednesday, February 14, 2001 1:11 PM Subject: RE: [PHP-DB] Undefined Variable and argument not valid . . . > Great! That fixed the first er

Re: [PHP-DB] Undefined Variable and argument not valid . . .

2001-02-14 Thread Jorge Santos
Hi John, You're trying to use a variable that is not set. Try using the isset function... Like this: if (isset($COCOD)) $result = mysql_query("SELECT * FROM tblAA_MIKER_COMPDAT WHERE COCOD=$COCOD",$db); Hope this helps... Later, Jorge [EMAIL PROTECTED] - Original Message - From