I am a novice attempting to run my first PHP Script. This is my web page...
<!DOCTYPE html>
<html>
<body>
<h1>Testing PHP!</h1>
<?php
echo "My first PHP script!";
?>
</body>
</html>
The h1 tag works but the php script does not show up. This is straight from W3Schools tutorial and works in their mini-editor. Is there something basic I haven't done?
<!DOCTYPE html>
<html>
<body>
<h1>Testing PHP!</h1>
<?php
echo "My first PHP script!";
?>
</body>
</html>
The h1 tag works but the php script does not show up. This is straight from W3Schools tutorial and works in their mini-editor. Is there something basic I haven't done?