jQuery Image Lazy Load Example

jQuery Image Lazy Load Example

If you are using image gallery or your page has more images then sometimes image get start load after the user scroll down to image that increase page load time and that decrease your traffic also.  By using jQuery Image Lazy Load you can reduce the page loading time and the images loads after the page load. In this article I am explaining how to implement the lazy load with …

Continue reading

Some Useful Basic Tricks of WordPress

Some Useful Basic Tricks of Wordpress

In this article I am explaining some useful basic tricks of WordPress that can be managed via theme’s functions.php and wp-config.php file. WordPress theme functions.php file, where you can manage menus, widgets, creates and defines number of settings of your WordPress theme. Some WordPress tricks are listed below. Disable the Admin Bar When you logged in to the WP Admin panel WordPress puts a administration bar on top of site. …

Continue reading

Android WebView Example

Android WebView Example

If you want to access a web page or web application like payment gateway pages etc in android app you can do it with WebView. The Android WebView allows you to display web pages as a part of your activity layout. It is not like a fully web browser, no navigation controls and address bar. If your application always requires an internet connection to retrieve data, you can design a …

Continue reading

How to Customize List View in Android

How to Customize List View in Android

In this tutorial I explained how to customize list view with your custom style instead of using default list view style. In my previous tutorial I have explained how to parse json from a url and in this post in this post I will show you how to display data on customized list view. So first we will create a layout “list_item.xml” for an item to display the website ID, …

Continue reading

Round Corners on Image Using PHP and GD Library

Round Corners on Image Using PHP and GD Library

Sometimes we need to add round corners to some pictures like profile picture and thumbnails, also not to modify the source files. It can be achieve through CSS but to work proper on all browsers, its too hard to get. So with GD library, it can be achieved with less work. In this post I am providing an example to achieve round corners on image using PHP and GD library. …

Continue reading

Force to Download File in PHP

Force to Download File in PHP

If you want to require a force to download file upon the user visiting a web page with PHP or want to control or track your downloadable contents then this file downloader script can give you more option. Especially if you want make images or other contents like document files (doc, docx, pdf), compressed files (zip, rar), music files, css, js or any downloadable file then you must need to …

Continue reading

User Signup and Signin with PHP and MySQL

User Signup and Signin with PHP and MySQL

Authentication system is the most important part for the developers to implement in a web application. It is necessary if you want to provide limited access of your application for anonymous user. If you want to create a web application with secure admin area or a user signup and signin with php and mysql this post will help you. Here are the steps to create a simple application that allow …

Continue reading

Download File From Remote Server in PHP

Download File From Remote Server in PHP

There are many methods in PHP that helps to download file from remote server. We can use php functions like file_get_content, copy, fsockopen and fopen to download remote files. But in this post I will use curl to download file. Because it is the advanced way to work with remote resources it can download large files with minimum memory uses. Before download a file we need to find if file …

Continue reading