From:             [EMAIL PROTECTED]
Operating system: Windows XP
PHP version:      4.2.0
PHP Bug Type:     Compile Warning
Bug description:  Undefined variable

Hello....

The following programm works, but not on my computer...
the variable "email" always is empty on my system, even if i filled the
input box. A friend of mine testet it too, and it works fine on his
system.But on my system the Html output appears in the browser. I fill
something in the inputform, i press on the "OK" button , but nothing
happens... I  use this programm with Apache/1.3.24 (Win32) PHP/4.2.0RC4
running...

can u find a mistake? i cannot... 


<?
  echo "Newsletter";
if (!isset($email))
  { 
  echo "<form action=index.php method=post>";
  echo "<input type=text name=email>";
  echo "<br>";
  echo "<input type=submit value =OK>";
  echo "</form>";
  }

if (isset($email) ) echo $email;

if (!isset($email) ) echo "no";

/*mail($email,"WWW.38HQ.DE - NEWS -", "Danke Oskar \n du bist nun auf dem
38hq newsletter");*/
?>




-- 
Edit bug report at http://bugs.php.net/?id=16943&edit=1
-- 
Fixed in CVS:        http://bugs.php.net/fix.php?id=16943&r=fixedcvs
Fixed in release:    http://bugs.php.net/fix.php?id=16943&r=alreadyfixed
Need backtrace:      http://bugs.php.net/fix.php?id=16943&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=16943&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=16943&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=16943&r=notwrong
Not enough info:     http://bugs.php.net/fix.php?id=16943&r=notenoughinfo
Submitted twice:     http://bugs.php.net/fix.php?id=16943&r=submittedtwice

Reply via email to