Archive for November, 2009

Web Design Tutorial: Php Mail Code

No Comments »

Bookmark this category
How to send html mail using php. In custom forms etc.

<?php
$to = “somebody@example.com, <a
href=”mailto:somebodyelse@example.com”>somebodyelse@example.com”;
$subject = “HTML email”;

$message = ”

This email contains HTML Tags!

Firstname

Lastname… Continue reading

How to edit wordpress templates

No Comments »

Bookmark this category
Carol Green wrote:
> Do you have a suggestion on how to modify (remove existing scripts
and type in my company info) my template/files? It has a flash intro and
5 pages.
______________________________________
Assuming you’re using wordpress; go to the appearance tab, then go down
to the editor, you’ll be able to edit the template files directly in the
editor… Continue reading

How to re-direct a page

No Comments »

Bookmark this category
Here’s the code:

Your Page Title
<meta http-equiv="REFRESH"
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”>

Optional page text here.

<meta http-equiv="REFRESH"
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”> is
the part that actually does the redirecting.

The number preceding the url (in this case zero) tells the browser the
number of seconds to wait before redirecting to the new url… Continue reading

Web Design Tutorial: Redirect using html

No Comments »

Bookmark this category
Here’s the code:

<meta http-equiv=”REFRESH”
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”>

Optional page text here.

<meta http-equiv=”REFRESH”
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”> is
the part that actually does the redirecting.

The number preceding the url (in this case zero) tells the browser the
number of seconds to wait before redirecting to the… Continue reading

Problem installing Wordpress Website Template

No Comments »

Bookmark this category
Carol wrote:
> Message body:
> I ordered a template that I cant figure out how to unzip (even with tutorial). After unzipping need to know how to upload to domain name/hosting.
>
> —
> This mail was sent from:
> DREAMDRIVENDESIGNS.COM WEBSITE FORM… Continue reading