Hello world.
This is part of an automatic autoresponser that will send a mail with a password, all the mail form works correctly, but how can we get the information from a php to another?
answer.php
<?php
$password=*******/// the password is stored in other PHP file. how can i get this password?
////how can we call a php from another php?
//// sorry if the questions is simple but i'm more an actionscripter
?>
mypassword.php
<?php
$pppp=$_POST["p"];
$qqq="thisismypassword;//// i want to send this to the answer.php
if($qqq==$pppp) {
echo "&verify=success&";
} else {
echo "&verify=fail&";
}
?>
This file is used and setup to work in a flash aplication.
is it possible?
Thanks
Pepe