Re: [PHP-DB] Re: vaiable from one page to another

2003-02-07 Thread Antonio Bernabei

- Original Message -
From: J.Veenhuijsen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, February 05, 2003 1:24 PM
Subject: [PHP-DB] Re: vaiable from one page to another


 Try

 p.php:

   ?php
   //Not ?php

   echo($fname);

   ?

 Jochem

 Bismi Jomon wrote:
 hi,

 i hav two programs ,

 html

   form name=f action=p.php mehtod=post

 input type=text name=fname 

 input type=submit 

 /form

 /html

 p.php:

 ?php

 echo($fname)

 ?

 i tried these programs and i didnt get the value of the variable in
 another php program. butit is not getting. one our friend told to put like
 echo $_post(fname)

 but it is also not working. now  getting the error about post array.

 so what to do.

 help me

 regards

 bis





 --
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DB] Re: vaiable from one page to another

2003-02-05 Thread Bastian Vogt
Hi,

you have to write it exactly like this:

echo $_POST['fname'];

HTH,
Bastian



 echo $_post(fname)


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DB] Re: vaiable from one page to another

2003-02-05 Thread J.Veenhuijsen
Try

p.php:

 ?php
 //Not ?php

 echo($fname);

 ?

Jochem

Bismi Jomon wrote:
hi,

i hav two programs ,

html

 form name=f action=p.php mehtod=post

input type=text name=fname 

input type=submit 

/form

/html

p.php:

?php

echo($fname)

?

i tried these programs and i didnt get the value of the variable in 
another php program. butit is not getting. one our friend told to put like
echo $_post(fname)

but it is also not working. now  getting the error about post array.

so what to do.

help me

regards

bis





--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php