|
Posted by Alvaro G Vicario on 07/29/05 15:18
*** Larry Woods wrote/escribió (Fri, 29 Jul 2005 05:02:53 -0700):
> if ($HTTP_POST_VARS["postback"]=="y") {
$HTTP_POST_VARS is deprecated, use $_POST unless you have a good reason not
to.
> <input type="hidden" name="postback" value="y">
> Notice: Undefined index: postback in C:\Inetpub\wwwroot\PHP\sendemail.php on
> line 5
if( isset($_POST['postback']) && $_POST['postback']=='y' ){ // Not tested
--
-- Álvaro G. Vicario - Burgos, Spain
-- http://bits.demogracia.com - Mi sitio sobre programación web
-- Don't e-mail me your questions, post them to the group
--
Navigation:
[Reply to this message]
|