Blog

We do update and maintain our best blogs and provide support. We don't regularly blog anymore. But if you want to see all our posts, you're in the right place.

Our Code Blog is Now Responsive!

Hey guys! How are you? I just want to have this quick post as an announcement that finally, our code blog is now responsive! The growth of mobile browsing is massive, and we want to keep up!Regarding the codes, I used the same principle with our post on how to code a responsive website. It […]

Generating JSON String with PHP

Today I'm going to share this code I used to generate a JSON string with data from MySQL database. For those not yet familiar, JSON is a lightweight data interchange format (like XML but it is lightweight). It has been used by companies like Google and Facebook in their APIs. Recently, I needed a JSON string […]

jQuery Tutorial for Beginners – Step By Step Guide!

Previously, we learned how to use Bootstrap to make our web applications look good. This time, we will learn how to use jQuery. Many of you asked me how to use jQuery. This tutorial is my answer to you. I want to give you links but I feel like it's easier to teach someone about […]

jQuery UI Tutorial for Beginners – Step by Step Guide!

Previously, we learned how to use jQuery to add some interactivity to our web pages. This time, are you getting started with jQuery UI? You've come to the right place! This step by step tutorial aims to give you a head start in using jQuery UI. You probably know what jQuery is so you want […]

jQuery UI Dialog Example with Source Code Downloads

Dialog boxes, modals, confirm boxes can also be done with awesomeness in jQuery UI. In this post we are going to take a look at the three jQuery UI dialog code examples I commonly use in my projects. Live demos and code download button links were also provided below. Keep on reading! Our jQuery, jQuery […]

Optimize Image for Web Using Photoshop and Thoughts on Faster Web Pages

This post is supposed to be a quick-tip on how you can optimize your images for web pages. But it feels like I also want to give some thoughts about website speed. There are many websites saying that your images must be optimized for the web, that should be updated and say, "your images must […]

12 HTML and CSS animations

You guys seem to like the first one, so here’s another one for you: 12 HTML and CSS animations. HTML and CSS are really amazing technologies that humanity has to celebrate. Okay, that may be exaggerated, but here are a dozen more amazing web demos with source code that might inspire you to be a […]

JavaScript POST request example

RELATED TUTORIAL: PHP, MySQL and AJAX CRUD Tutorial – Step by Step Guide! This post will show you JavaScript POST request examples. This is useful if you want to submit a form using HTML and JavaScript. A PHP file will receive the posted data and print the response. I think this is one of the […]

12 jQuery Questions and Answers You Should Be Reading on StackOverflow

Hi guys! Below are twelve of the jQuery related questions and answers on StackOverflow that I found very useful during development. I opted to compile them here because I feel good reading those brilliant questions and answers by coders from around the world. Enjoy! How would I know if an element is hidden? Sometimes you […]

Email Activation Code in PHP

Email activation or verification is one requirement when you’re building an app with a membership feature. Our Email Activation Code in PHP will help you with that! This is one way to detect if there’s really a person behind the submitted email address. An email address is considered invalid if no person was able to […]