You are on page 1of 9

What is difference between HTML and PHP

HTML(Hypertext Markup Language)


Used to use web page. Show browser how to load page, text, graphic. Markup language that use tags to describe document content

PHP(Hypertext Preprocessor)
Run on server Server side language Use to generate and retrieve data for dynamic page

What is database?
A collection of data organized in particular way Also known as Database Management System(DBMS) Type of DBMS

Oracle Mysql Microsoft Access Microsoft SQL Server

What is the best way to describe CMS


CMS refers to content management system. Computer program thats allow publishing, editing and modifying content of the web page. Example of CMS :

Drupal Joomla WordPress

Explain what is LMS?


Learning management system Software application used to plan, implement, and assess a specific elearning process. Provide a instructor with a way to create and deliver content, monitor student participation, and assess student performance. Example

Moodle

Explain what is CSS


CSS refers to cascading style sheet Define how to display HTML element Enhance display capabilities of HTML Three type of style sheet :

Embedded
Change style for one web page

Inline
Change style within an individual HTML tags

External
Change style for multiple web page.

Embedded

<style> P{ font-weight : bold; color : red; text-align : center; } </style> Inline <p style=color : blue ; text-weight : 14px;>sdfsdf</p>

External <link rel=stylesheet ref=text/css href=style.css>

What are the methods use to do online payment in malaysia?


Cimb Click, Maybank2u

What are the methods use to do online payment Internationally


Paypal American Express Western Union

Print Hello World in PHP, HTML, ASP, Javascript

HTML
<html> <head> </head> <body> <p>Hello World</p> </body> </html>

PHP <?php echo Hello World; ?>

Javascript(Body) <script> document.write(<p>Hello World</p>); </script>

Javascript(Header) <html> <head> <script> Function HelloWorld() { alert(Hello World); } </script> </head> <body> <input type=button onClick=HelloWorld() value=Click/> </body> </html>

You might also like