Page 1 of 1

few questions about php

Posted: Tue Jul 27, 2010 4:40 pm
by dargon12
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.

Re: few questions about php

Posted: Tue Jul 27, 2010 4:44 pm
by internet-solution
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.

Re: few questions about php

Posted: Tue Jul 27, 2010 5:44 pm
by dargon12
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?

Re: few questions about php

Posted: Tue Jul 27, 2010 9:07 pm
by internet-solution
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

Posted: Wed Jul 28, 2010 4:31 am
by dargon12
thanks