I am C++ develoer and new with web. I bought web space and DNS, when I try to upload HTML changes they are getting reflected on my website, but when I right any PHP script and upload file no changes are getting updated. I am using FileZilla for FTP. Do I need to follow some directory strucutre?
Asked
Active
Viewed 1,690 times
-2
-
2If the server has PHP support than you should be able to place .php files anywhere you can place .html files and it will parse them. – John V. Jan 12 '13 at 16:57
-
@AlexLunix: Thanks. You solved my problem. Please post it as answer, so I can mark as accepted answer. – Pranit P Kothari Jan 12 '13 at 17:04
1 Answers
2
If the server has PHP support than you should be able to place .php files anywhere you can place .html files and it will parse them.
- Make sure you have PHP support on your server
- Make sure that the files are placed where you place your normal html files
- Make sure that the files have an extention that your server is setup to use (default is .php)
- Make sure the PHP inside the files is contained in
<?php
and?>

John V.
- 4,652
- 4
- 26
- 26
-
Thanks, it solved my problem. Actually I kept extension as .html only. When I rename file as .php, it worked. – Pranit P Kothari Jan 12 '13 at 17:17