few questions about php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
dargon12
Forum Newbie
Posts: 3
Joined: Tue Jul 27, 2010 4:12 pm

few questions about php

Post 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.
internet-solution
Forum Contributor
Posts: 220
Joined: Thu May 27, 2010 6:27 am
Location: UK

Re: few questions about php

Post 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.
dargon12
Forum Newbie
Posts: 3
Joined: Tue Jul 27, 2010 4:12 pm

Re: few questions about php

Post 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?
internet-solution
Forum Contributor
Posts: 220
Joined: Thu May 27, 2010 6:27 am
Location: UK

Re: few questions about php

Post 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").
dargon12
Forum Newbie
Posts: 3
Joined: Tue Jul 27, 2010 4:12 pm

Re: few questions about php

Post by dargon12 »

thanks
Post Reply