I am making a website and would want to do the following, but I have no idea how: echo out HTML code with PHP code, so the PHP code executes. I read the file and echo it, but the PHP code is just a string of text and does not execute.

For example:

[a website file dude.php]

<html>
<?php
echo "dude";
?>
</html>

[another website file, that tries to echo out dude.php file, with the PHP code executed]

<?php
$pathToFile = 'dude.php';
$myFile = fopen($pathToFile, 'r');
$theData = fread($myFile, filesize($pathToFile));
echo $theData;
fclose($myFile);
?>

But all I get, is dude.php echoed out with the PHP code not executed.

I do not understand why, maybe there is something with the "echo" command...

I hope that this was clear enough for people to understand. I really don't know any other way to explain it.

link|improve this question
The above syntax seems to be correct, have you installed PHP and Webserver to run your PHP application? – Ibrahim Azhar Armar Sep 17 '11 at 7:46
If need need to read the whole contents of a file, the file_get_contents function might be good to know for you as well. Anyway, please select the answer that helped you most below. This will mark your question as solved. See meta.stackoverflow.com/questions/5234/… – hakre Sep 17 '11 at 8:59
feedback

2 Answers

You're looking for the include statement.

link|improve this answer
In fact, include is not a function, it is a statement. – xdazz Sep 17 '11 at 7:49
it can be used as a function too include('file'). also can use require in the same manner – gion_13 Sep 17 '11 at 7:52
Thank you very very much :) I am very grateful to you, I have been searching for this over 4 days now... IT WORKS!! – Wolfi Sep 17 '11 at 7:55
And you should accept his answer then. – Revenant Sep 17 '11 at 9:04
feedback

Evaluate string code wiht eval($somePhpCode). -Documentation- But maybe you want to use include as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.