I'm trying to make a HTML page read a external PHP file with a variable:
File:
HTML:
It results:
"The e-mail in the file is:"
Nothings more, can anyone help me in this?
@Edit
Sorry for the wrong area, can any moderator move it?
File:
Code:
<?php $email = "test@test.com" ?>
Code:
<html> <head> </head> <body> <?php include ( "File1.php" ); ?> The e-mail in the file is: <?php echo $_POST [ 'email' ] ?> </body> </html>
"The e-mail in the file is:"
Nothings more, can anyone help me in this?
@Edit
Sorry for the wrong area, can any moderator move it?
Comment