View Single Post
ישן 06-01-08, 10:13   # 6
DavidBD
חבר על
 
מיני פרופיל
תאריך הצטרפות: Dec 2005
גיל: 31
הודעות: 956

DavidBD לא מחובר  

=\ שמעת על RETURN?
PHP קוד:
<html>
    <head>
        <title></title>
    </head>
<body>
   <form action="" method="post">
<input type="submit" name="send" value="שלח" />
  </form>
</body>
</html>

<?php
class b
{
    function 
check()
    {
        
$send $_POST['send'];
        return 
$send;
    }
}

$b = new b;
if (isset(
$b ->check()))
{
echo(
"ניסיון");
}
?>
$b->check();->send? לא קיים...
__________________
דוד בן דוד.
  Reply With Quote