How can I change the background of my web page depending on the time only using XHTML?

Wednesday, February 17th, 2010

I need to change the background of my web page 3 times a day. good morning, good afternoon, and good evening. this has to be in xhtml and not use javascript or PHP. I have to do this for a class which is why I cant use these.

<script language="JavaScript">

day=new Date() //..get the date

x=day.getHours() //..get the hour

if(x>=0 && x<4) {

document.write(’<style type="text/css">body{background: white url(1st.jpg); color: black}"></style>’)

} else

if(x>=4 && x<12) {

document.write(’<style type="text/css">body{background: white url(2nd.jpg); color: black}</style>’)

} else

if(x>=12 && x<18) {

document.write(’<style type="text/css">body{background: white url(3rd.jpg); color: black}</style>’)

} else

if (x>=18 && x<24) {

document.write(’<style type="text/css">body{background: white url(4th.jpg); color: black}</style>’)

}

</script>

Technorati Tags: , , , , , , , , , , , , ,

Html/Php Contact Form – Part 1

Sunday, February 14th, 2010

Create a form so people can send you emails via html form

Source Code: http://gorilla3d.com/v4/files/contactus.zip
HD Video:
http://gorilla3d.com/v4/videos/php_contact_form_p1.mov

Duration : 0:8:37

(more…)

Technorati Tags: , , , ,

Html/Php Contact Form – Part 2

Wednesday, February 10th, 2010

Continued from: http://www.youtube.com/watch?v=VbHsEafkyjM

Create a form so people can send you emails via html form

Source Code: http://gorilla3d.com/v4/files/contactus.zip
HD Video:
http://gorilla3d.com/v4/videos/php_contact_form_p2.mov

Duration : 0:6:27

(more…)

Technorati Tags: , , , ,

Basic XHTML Style Tutorial

Tuesday, January 26th, 2010

How to use basic styles in Xhtml.

Duration : 0:3:42

(more…)

Technorati Tags: , , , , , , , , , , , ,

PHP Basics: Embedding PHP inside HTML

Tuesday, January 26th, 2010

Embed PHP code inside html to add some dynamic functionality to your pages.

Duration : 0:5:1

(more…)

Technorati Tags: , , , , , , , , , , , , , , , , , , , , , , ,

Basic XHTML Tutorial

Saturday, January 23rd, 2010

Introduction to Xhtml

Duration : 0:3:7

(more…)

Technorati Tags: , , , , , , , ,

How to Create a Basic Website Design Template Using PHP, CSS, and XHTML Part 3 of 3

Friday, January 22nd, 2010

Learn how to create a basic static page website design template using php, css, and xhtml. Using website templates like the one you’ll learn to make here helps cut down on the rewriting of code and saves you a ton of time. This is a basic template we’ll use to build more advanced website designs and templates.

Duration : 0:9:31

(more…)

Technorati Tags: , , , , ,

How to Create a Basic Website Design Template Using PHP, CSS, and XHTML Part 2 of 3

Thursday, January 21st, 2010

Learn how to create a basic static page website design template using php, css, and xhtml. Using website templates like the one you’ll learn to make here helps cut down on the rewriting of code and saves you a ton of time. This is a basic template we’ll use to build more advanced website designs and templates.

Duration : 0:10:0

(more…)

Technorati Tags: , , , , ,

Programming PHP MYSQL AND HTML – part

Wednesday, January 20th, 2010

if you found this useful please do subscribe :)

Duration : 0:9:25

(more…)

Technorati Tags: , , , , , , , ,

PHP,HTML Tutorial // POST, Table, Forms

Wednesday, January 20th, 2010

A PHP and HTML Tutorial in which we processes information from a form using the $_POST[]; functions in PHP and created a table and form.

Link for Notepad2: http://www.flos-freeware.ch/notepad2.html

Duration : 0:21:35

(more…)

Technorati Tags: , , , , , , , , , , , , , ,