Hey guys! How are you? Today I’m sharing these three simple but useful (well, at least for me) online tools for developers like you. I developed it using Bootstrap to have a decent user interface, .htaccess for clean URL location, PHP for input processing and of course, jQuery AJAX requests to prevent reloading the whole… Continue reading I’m Making Some Simple But Useful Online Tools for Developers
Tag: php
Saying Goodbye to Google Blogger
Hey guys! How are you? I’m so happy today. I’m almost done re-creating this website. Why? I switched from Blogger to WordPress! Yes, you read it right. Some of you may know that I’m a Google fan. I love Google. There was a time when I worked with a product manager from Google Singapore to improve… Continue reading Saying Goodbye to Google Blogger
jQuery UI Autocomplete Example
We, the developers, want to help our users search for the data they are looking for – in an easy manner. This jQuery UI autocomplete tutorial will help you achieve it! Having an autocomplete feature in our search box is really good for the user experience, it is like having a user assistant while he… Continue reading jQuery UI Autocomplete Example
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… Continue reading Generating JSON String with PHP
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… Continue reading jQuery UI Dialog Example with Source Code Downloads
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… Continue reading JavaScript POST request example
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… Continue reading 12 jQuery Questions and Answers You Should Be Reading on StackOverflow
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… Continue reading Email Activation Code in PHP