Frequently Asked Questions: script questions: nl converttophp: page: 2
-
1
Does the browser load the whole PHP page or does it just load the sections that we see?
The server won’t send any HTML code or images to the browser for other webpages, only the section you ask for - if you check view source on one of your pages, that’s all it will return to the user’s browser.
May 21, 2004 |
By Sasha |
Filed under FAQ, NL-ConvertToPHP, Scripts
-
2
When I try to look at my pages, I get the header, footer, but none of my content. What’s wrong?
Make sure you are pointing to the right URL. Your pages will be something like: example.com/whatever.php?section, not example.com/whatever.php?=section or example.com/whatever.php?id=section.
May 21, 2004 |
By Sasha |
Filed under FAQ, NL-ConvertToPHP, Scripts
-
3
When I try to look at index.php?section, it prompts me to download the file instead of opening it. Is it just something that I will have to upload to make it work, or did I do something wrong?
Yes, you have to upload it to your server for it work. In fact, that goes for all .php pages — you can’t see them before uploading, because all PHP files must be parsed by the server before they can return HTML to the browser (unless of course, you have PHP installed on your computer, but that’s usually not the case).
May 21, 2004 |
By Sasha |
Filed under FAQ, NL-ConvertToPHP, Scripts