Your web server must be able to interpret php code.
The php interpreter must be install in your web server and the server must be configure to direct files with php extension to the interpreter.
Please read the documentation on php.
either you dont have the php code inside of opening and closing php tags (< ?php ?>) or you dont have the filename of the file associated correctly in your webserver.
Your web server must be able to interpret php code.
The php interpreter must be install in your web server and the server must be configure to direct files with php extension to the interpreter.
Please read the documentation on php.
either you dont have the php code inside of opening and closing php tags (< ?php ?>) or you dont have the filename of the file associated correctly in your webserver.
Make sure it has a .php file extension and that the script portion is encased with the php angle brackets….
< ?php
code goes here
?>