Explore your Imagination

Blog of Joeby Zaldivar Keep in touch…

2May/115

What is Java?

Definition:

TechEncyclopedia:

An object-oriented programming language that is platform independent. Developed by Sun, Java is widely used on the Web for both client and server processing. Modeled after C++ and designed to run in limited memory, Java added programming enhancements such as "garbage collection," which automatically frees unused memory.

When a Java program is launched from a Web page, the program is called a Java "applet." When run without the Web browser on a user's machine, it is a Java "application." When running in a Web server, it is a Java "servlet."

Read more: http://www.answers.com/topic/java-programming-language#ixzz1LDmwXoGp

 

Britannica Concise Encyclopedia:

Modular object-oriented programming language developed by Sun Microsystems in 1995 specifically for the Internet. Java is based on the idea that the same software should run on many different kinds of computers, consumer gadgets, and other devices; its code is translated according to the needs of the machine on which it is running. The most visible examples of Java software are the interactive programs called "applets" that animate sites on the World Wide Web, where Java is a standard creative tool. Java provides an interface to HTML. 

2May/113

PHP Introduction

What is PHP?

  • PHP stands for PHP: Hypertext Preprocessor
  • PHP is a server-side scripting language, like ASP
  • PHP scripts are executed on the server
  • PHP supports many databases (MySQL,  PostgreSQL, etc.)
  • PHP is an open source software
  • PHP is free to download and use

Before studying PHP you should have basic knowledge in

  • HTML or XTHML
  • Javasripts

For the advance user :

  • Database Scripting

 

Question: How to start PHP page or script?

Ans: Start your PHP page by putting this symbol:

<?php --comment: this is a php start tag.

your code here...

?> --php end tag.

and save your file with the extension .php ex: myfilename.php

Free Web Hosting