Archive for May, 2008
Cheaper and Easier
Which country would you like to visit if you face this option?
Malaysia or Singapore?
That’s my uncle question a week after he came back from his office tour.
I answer : “Malaysia”
With my experience visit both of them I think I prefer to visit Malaysia, a lot of place that seem familiar to me exist. Living on [...]
change wordpress password manually
Reset wordpress password using provided link not work, sadly no phpmyadmin available
Fortunately I have shell access which is enough, using built in md5 function to generate and update the password, here’s the steps:
1. Creating md5
- Using shell
Just type :
md5 -s your chosen password
- Make php script with this content :
<?php
$string=’your chosen password’;
echo md5($string);
?>
save [...]
$this and php
Little mistake on naming variable make me confuse for almost an hour.
$this
yes, $this is built-in variable that often use in OOP. By using $this, we refer to self referencing variable.
More in php.net manual
<?php
class A
{
function foo()
{
if (isset($this)) {
echo ‘$this is defined (’;
echo get_class($this);
echo “)\n”;
} else {
echo “\$this is not defined.\n”;
}
}
}
class B
{
function bar()
{
A::foo();
}
}
$a = new A();
$a->foo();
A::foo();
$b = new B();
$b->bar();
B::bar();
?>
Install PHP6, easy install in windows
PHP6, I thought I already have latest one. 5.2.6 but I’m wrong
Quick way to try PHP6 is by installing Appserv 2.6.0, click here to download php 6.0.0-dev
Installation process is the same as other appserv series :
1. Double click installer
- SEO for http://www.squidoo.com/Dress-it-up-for-Christmas by nooranwer
- Convert my website to Joomla by rgiezen
- flash - character animation by ecpwebmedia
- full time expert php coders needed by seowebsolutions
- Extract all US Doctor to a CSV File by mdudley
- oscommerce by consultingpalace
- Zencart Customization by hakkir
- 100% CSS Website using Ruby on Rails by lsmith79
- MySpace Friends for Proxy Sites by tibbie
- Ecommerce exams help require by DianaGroup
Friends
Visitor
Thanks
Ads
|
Visit PokerStars.com today or play for free at PokerStar.net. If you want to play Online Blackjack check out Casino.com or play for free at www.Betfair.com today. FullTiltPoker is the #1 room online. |


