Hi everyone, it's my 1st post here, I hope you can help me 🙂
I'm starting to learn php but I still don't know what I need to execute .php files. I installed php 5.2.1 with the msi package but it doesn't work as I expected.
For example, this simple code saved as .php is not displayed in the browser:
<html>
<head>
<title>Hello world!</title>
</head>
<body>
<?php
echo "Hello world!";
?>
</body>
</html>
When I double-click on the file nothing happens. I thought it would open my browser (firefox) and display a page with the title "Hello world!" and "Hello world!".
Do you know what I need or what's happening?
Thanks 🙂
PD: I know it's a really newby question but I have been installing and uninstalling stuff and trying out and googling stuff up but I haven't found solution to my problem.