|
|
Dynamic websites are
websites written in a server side programming language. These programming
languages allows you to have more interactivity from your guests on your
website. With server side programming you can have a message board, chat
room, feedback form and other dynamic content on your site. Here is a
list of the most popular languages: PHP, ASP, JSP, Perl
This page is a dynamic
web page. If you look at the URL address you will see it has a .php extention.
Example
Today's date is July 3, 2008, 10:39 pm
Here is the PHP code:
<?php
$date = date("F j, Y,
g:i a");
echo "Today's date
is $date";
?> |
|