Entries by Mike Dalisay

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 […]

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 […]