Posts Tagged ‘tmpPost’

Changing The Site URL in Wordpress

No Comments »

Changing The Site URL

The code will work in the wp-config.php file if you happen to get locked out of the admin.
Happens a few times here and there. Just put this is at the starting code of thw wp-config file in
your wordpress home directory.

define(‘WP_HOME’,'http://example.com’ http://example.com%27);
define(‘WP_SITEURL’,'http://example.com’… Continue reading

Skype online status not showing here’s the solution

No Comments »

How to show your Skype status on the web
How do I get a Skype status button?

Edit your privacy options in Skype to show your status on the web.

Simply go to Tools > Options > Privacy to update your settings.

Tick the “Allow my status to be shown… Continue reading

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 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