1.Is there editor to php? i found this.. http://www.eclipse.org/pdt/downloads/ is there anymore?
2.Hwo can i knwo in which language (php/html/asp.net) the site is wroten? any site
thanks.
few questions about php
Moderator: General Moderators
-
internet-solution
- Forum Contributor
- Posts: 220
- Joined: Thu May 27, 2010 6:27 am
- Location: UK
Re: few questions about php
1. You can use any text editor
2. For most sites, the clue is in file extension in site url .php, .html, .aspx. However in many sites, the extensions may be hidden or webserver is configured to use non-standard file extensions and its not possible to know the server side language used.
2. For most sites, the clue is in file extension in site url .php, .html, .aspx. However in many sites, the extensions may be hidden or webserver is configured to use non-standard file extensions and its not possible to know the server side language used.
Re: few questions about php
Is there any tips to knwo? in the soruse code i can see only html, and java scirpts.
i can't distinguish between the html and the php. any tips?
i can't distinguish between the html and the php. any tips?
-
internet-solution
- Forum Contributor
- Posts: 220
- Joined: Thu May 27, 2010 6:27 am
- Location: UK
Re: few questions about php
PHP, ASP and ASP.net scripts are executed on webserver, and thats why they are called server side scripts. The webserve parse the actual code and then renders the output as HTML. This HTML output is sent to web browsers (clients). Therefore PHP / ASP codes cannot be seen in a web browser (even if you view the "source code").
Re: few questions about php
thanks