Languages and Software to Be Covered (Cont.)


PHP (HyperText Preprocessor)
PHP is a general-purpose server-side scripting language which can be embedded into HTML to create a wide variety of mini-applications, but can also be used to build large-scale complex applications.

<html>
 <body>
  <?php
   echo  "Pick: ";
   $cars = $_POST[cars];
   foreach ( $cars as $car )
    echo  "$car ";
  ?>
 </body>
</html>





JavaScript
JavaScript is a scripting language used in web content development, primarily to create functions that can be embedded in or included from HTML documents and that interact with the DOM.

       





      Don’t put all your eggs in one basket.