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
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
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
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
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
No Comments »