Send Bulk Email With PHP

With mail() function in PHP you can send email from your system to any email address easily. If you using a Linux system, you don't have to set anything to use mail() function. But in Windows you need to add extra line in php.ini to specify your SMTP settings.See the code below:But sending bulk emails using PHP mail() function, often consider spamming. As PHP mail() will send all the email at once during the iterations. The code is something like this:That method above will … Read more...

TortoiseSVN: Free and Easy To Use Subversion Client

Apache Subversion (SVN) is software version and revision control. You can collaborate with other developer using SVN. As you can commit your revision to the code and also add a comment about the changes. To use Subversion you need a Subversion client (svn client). In Ubuntu it is available under Synaptic. But in Windows you need to install 3rd party tool. One of the best is TortoiseSVN.[quote sourcename="TortoiseSVN Developer" sourceurl="#"]TortoiseSVN is an easy-to-use SCM / source control … Read more...

Web Development Using PHP, MySQL and Flash

PHP and Adobe Flash (formerly Macromedia Flash) are popular scripts used for creating web pages and online multimedia presentations. The two scripts can be combined to create dynamic, interactive pages similar to those used by big movie studios to promote their latest film releases.PHP (Hypertext Preprocessor) is similar to the standard static HTML script and it recognizes the elements of HTML, but it also uses active server-side processing in creating dynamic pages. PHP can deliver varied … Read more...

List Of Useful Websites For A Web Developer

I have been programming web application for a several years now. It was start from 2003 when i was in a college. Built a very simple static html websites at that time. And then i'm learning several web programming language such as PHP, ASP & ASP.Net, JSP, Groovy & Grails, and some others. And now i'm focusing on PHP. And i would like to share list of useful websites that i use when i want to learn a new thing or when i stuck.Official Documentation SitePHP.Net The official PHP … Read more...

Snippet Code To Make Automatic Live URL With JQuery

Sometimes if you a blog or forum owner you need to make all your text (in url format) turn into a live url (clickable) to make your visitors easier to visit the link inside that content rather than manual copy that link and paste it in address bar. It's hard if you change all your content one by one to make this link click able.See the following example:Text with url format (unclickable):Live link/url (clickable): So to change that text into live link, you can … Read more...

PHP Snippet Code To Generate Random Float Number

Generating a float random value in PHP is little bit tricky. Both rand() and mt_rand() will return Integer value. But sometimes you need to generate random float value, for currency or math case for examples. So i would like to share my little script to generate a Float random value.Usage:This code is free to use in any php application you like. If you like please leave me any comments, i really appreciate it. … Read more...

Snippet Code To Benchmark Your PHP Script

Testing is one of common task for programmer. In every development phase, testing is need to be done before moving to next phase. There are a lot of testing technique. One of them is benchmarking, to test script/code performance. Benchmark test result can be used to optimize the code/script.As in PHP you can get how long your server took to parse and execute your code. Here is the simple snippet code to get the execution time:This simple code will help you discover bottlenecks in … Read more...

Free PHP Obfuscator

Update: The obfuscator download is not active anymore.You may need to obfuscate your php code for security or licensing reasons. So the other third party cannot easily hijack your code for their own reasons. Obfuscated code is source or machine code that has been made difficult to understand for humans. So if you planning to sell your php script, make sure you obfuscated it for security and license reasons.There are a lot of tools to obfuscating PHP script, 2 best tools on the net right … Read more...

Free Programming E-Book List

Everybody love free things. Including me. Here is the compiled list of Free programming books and tutorial available for you to download. And once again it is free, i will update it more as soon as i get a new link.List of freely available programming books from stackoverflow.com"The only source of Knowledge is Experience" (Albert Einstein) … Read more...

Debug WordPress To See How It is Works

It’s no doubt that WordPress is one of the most powerful CMS for blogging. Beside it is free and open source, it also user friendly. But do you know how exactly WordPress executing it’s code? Well, this idea come up in my mind, so i would like to trace how WordPress executing it’s code.When visitors visit your WordPress blog, it only serve through index.php, even your visitors click any links in your blog (post, category, page, blogroll, archive, feed links), it will serve only from … Read more...