Skip to main content

Posts

Showing posts from October, 2017

php for begginer

PHP 5  Tutorial ❮ Home Next ❯ PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages. PHP is a widely-used, free, and efficient alternative to competitors such as Microsoft's ASP. Easy Learning with "Show PHP" Our "Show PHP" tool makes it easy to learn PHP, it shows both the PHP source code and the HTML output of the code. Example < !DOCTYPE  html > < html > < body > <?php echo   "My first PHP script!" ; ?> < /body > < /html >

Internet programing

Chapter 1: Overview of Internet Programming This chapter explains what is meant by an Internet application, and what its different components are. 1.1 Overview An Internet application is a client-server application that uses standard Internet protocols for connecting the client to the server. You can use exactly the same techniques to create a true Internet application, which is available publicly through the World-Wide Web, or to create an intranet application. An intranet application is one which runs on your corporate intranet, and is only available to the staff in your corporation. Whenever we talk about Internet applications, we mean either true Internet applications or intranet applications. For an introduction to the World-Wide Web, see the appendix  Introduction to the World-Wide Web . Internet applications are thin-client, thick-server. This means that the client end, the part the end-user sees and interacts with, is only responsible for the user-interface. The clie...