Web Programming Category
Debug Yor PHP Application With Xdebug
Debugging php code or php web application is not as easy as debugging asp.net web application using Visual Studio.Net. But still, we can. From my previous article, “See How PHP Web Application Work With... [More...]
See How PHP Web Application Work With XDebug
The most common issue when we are developing web application using PHP is debugger. Debugging our web application is very important when we are developing and testing our project. Usually i’m using var_dump(),... [More...]
URL Validation Class In PHP
A couple days ago i’ve been struggling with URL validation in PHP. And i found a URL validation class from phpclasses.org which i think is great and do what i need. And to use it, is really simple. Beside... [More...]
Turn Off Light Feature For Video Streaming Site
Most of the times when you watching a streaming video from Youtube or other else, you found that all the comment or related videos or ads are little bit distracting. So if you own a video streaming website,... [More...]
Get Last Tweet Without OAuth Using PHP
Get last tweet of your tweets or someone’s tweet with username doesn’t need OAuth. Twitter have their own API to get last tweet with username. You can access the API with http://api.twitter.com/1/statuses/user_timeline/,... [More...]
Get Twitter Update With JQuery
From the previous article i write, Get Last Tweet Without OAuth Using PHP, and now i want to share with you how to get the twitter update with JQuery. Get Twitter update with JQuery is not much different,... [More...]
Enable Maintenance Mode With .htaccess
Sometimes when you are upgrading your blog or your website, it’s wise and highly recommended that your block all your visitor and redirect it to maintenance page. So your visitors know and come back... [More...]
Learning JQuery For First Time
jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way... [More...]
Use And Tweak timthumb Script For WordPress Blog
TimThumb is a small open source library which is aimed to provide resized copies of given images. TimThumb is developed by Ben Gillbanks which is firstly create this script for the WordPress themes Mimbo... [More...]
Most Common HTML Mistakes
If you are still new in web designing and web development, you must be familiar with HTML code. And as i writing this, now the new HTML standard is HTML 5. Read my article HTML5 the next generation of... [More...]
Image Watermarking Using PHP
There are someways to protect your copyrighted images. One way is use watermark image so when someone copy your image, it is hard to remove the watermark and they cannot use it for their own benefit without... [More...]
[TIPS] Convert Your Numbers To Human Readable Format
Sometimes your code produce a large numbers which is hard for user to read it. For example 17753392783 bytes or 18293753038 unit. For human eyes, it is easier to get 17MB or 1 million rather than lot of... [More...]
[TIPS] Write print_r() Output To File
When debugging a php application, print_r() or var_dump() often use to display the data inside the variable, usually an array that store many data inside. print_r() is core php function to displays information... [More...]
Things You Can Do With PHP cURL
Curl is a command line tools to transfer data using various protocol. Curl project was released with libcurl, which is a library for curl that can be use in multi programming language. But it is widely... [More...]
Keep PHP Process Upon Closed Client Connection
PHP process as default will stop or terminate the process when the client close the connection or process timeout. When user stop the process through browser it will automatically send abort header, and... [More...]
[HowTo] Replace String In Mysql With One Query
Yesterday i was helping my friend’s blog. She want to change her domain and move her hosting server for some reasons. She is using wordpress as her blog engine and of course using mysql as database... [More...]
[HowTo] Install ImageMagick/Imagick For PHP On Ubuntu
Installing ImageMagick on Ubuntu with PECL is really simple. But i want to share with you how to install it beside to remind myself someday, if i forget how to install it. ImageMagick is a php library... [More...]
[TIPS] Get File Extension Easily in PHP
i want to share a tips for you to get file extension in PHP easily. Before i always use the old way to get the file extension, that is using substring and find the last “.” (dot), and get the... [More...]
[Tutorial] Groovy and Grails Part 2 – Installing Grails
this is the next article from Grovvy and Grails Part 1 – Introduction that you can read it here. Now we continue to install grails in your machine. Before you continue, there are some requirements... [More...]
[Tutorial] Groovy and Grails Part 1 – Introduction
What is Groovy? What is Grails? For those who don’t know about Groovy and Grails, you are lucky because i’m about to explain Groovy and Grails and how powerful they are in Web Application... [More...]



