about 4 months ago - 2 comments
Well, unlike the normal ones that gives you a strength meter that goes from green to red indicating your password strength. This one gives you the time it would take for a normal PC to crack your password. The password strength meter is called ChronoStrength For example mine. This comes as a standalone javascript or
about 4 months ago - 1 comment
This is a way to validate a form using simple JQuery. Why re-invent the wheel when there’s so many type of wheels to choose from? and also, for sometimes, we are just lazy to find the best wheel possible for our project. What I’m trying to do here is not to spoon feed you the
about 10 months ago - 1 comment
A few months back, I have been struggling to have openID authentication loaded to my application. It’s a hazard… the simple idea of having it integrated to my application and have users logged in using their existing facebook, google account is pretty fancy, but the code behind it is a mess, a complete tragedy. Luckily
about 10 months ago - 6 comments
There are quite a few tools lying around on the internet that helps the web development or web design process drastically. It will certainly strike inspirations and surely make your life easier while creating a website. In this post, I have compiled several websites that I have make use of in my progress. Lorem Lipsum
about 10 months ago - 12 comments
Is to know all of these <insert evil and sinister laugh here> languages. This post serves as a starting place for all who wants to be a web developer. You might not need to understand in depth on any of these, but the least is the basic. My choices of framework serves as a suggestion
about 10 months ago - 9 comments
Do you ever wondering how to do certain things in PHP like generating graphs, generating pdf or parse RSS efficiently and easily. I found myself rewriting these codes every once in a while and was lucky enough to find these wonderful libraries/framework that are completely free and easy to use. There are more, but I
about 11 months ago - 17 comments
Send Simple Mail 12345678910function send_simple_mail($from,$to,$subject,$body) { $headers = "From: $from\r\n"; $headers .= "Reply-To: $from\r\n"; $headers .= "Return-Path: $from\r\n"; $headers .= "X-Mailer: PHP5\n"; $headers .= ‘MIME-Version: 1.0′ . "\n"; $headers .= ‘Content-type: text/html; charset=utf-8′ . "\r\n"; @mail($to,$subject,$body,$headers); } List a Directory 1234567891011121314151617function list_files($dir) { if(is_dir($dir)) { if($handle =
about 11 months ago - 3 comments
When you think of a pagination system, you would think about some messy PHP codes to generate each and every page. So subsequently, for an user who wants to browse through your pages, they will do a lot of calls to your PHP file and by that do a lot of calls to your database
about 11 months ago - 3 comments
This is my first post about Codeigniter, a free MVC PHP framework that is very easy to understand and implement. I have been using Codeigniter for quite a while now and is very please with what I’ve achieved. Hold on, what is MVC? MVC is short for Model View Controller and is an abstract way
about 3 weeks ago
thanks
helped me out a lot
about 2 weeks ago
Where to create init_pdf.php
about 2 weeks ago
In the Codeigniter Library folder.