How to secure input in php
Sanitizing data means Remove any illegal character from the data. In php you need to impliment this one for secure input for MySQL.
Read MoreGetting checkbox values on submit in PHP
If you have multiple options, then you want to get the checked values to store them in variable on form submit, Then you can use this technique. A good method which is a favorite of mine and for many developers
Read MoreGetting the screen density programmatically in android
Getting the screen density programmatically in android
Read MoreHow To Call Native Java Methods From Webview Javascript
When any developer developing an Android app based on Webview, that time developer faces a number of problems. So, this post is based on one of that issue, which is - How to call native Java methods from Webview Javascript.
Read MoreWhat is jQuery noConflict?
jQuery uses the dollar sign ($) as a shortcut or alias for jQuery. Thus, if you use another JavaScript library that also uses the $ sign as a shortcut, along with the jQuery library on the same page, conflicts could occur. Fortunately, jQuery provides a s
Read MoreHow to use a google font on your website
For a better web designing every web designer as well as every programmer either beginners or experienced programmer want to create a unique webpage for the website. So that when we talk about the Fonts then designer and programmers think how to use an ex
Read MoreFunctions in PHP
PHP function is a piece of code that can be reused many times. PHP functions are similar to other programming languages. More than thousands pr-define functions are available in PHP. There are many advantage of PHP Functions like Code Reusability, Easy to
Read MoreDetermine if device have an Internet Connection
Some of the most programmers set alarm base background services are to schedule regular updates of application for offline data synchronization. In that case I think programmers should use the BroadcastReceiver for better results. There's no need to sched
Read MoreFind the location of an Item in multidimensional array
Finding position of an element in a multi-dimensional array
Read MoreWhat is use of supportsRtl true in android
Android has full native support of RTL layout or text orientation since SDK 17 (Jelly Bean). Mostly mobile apps are designed in LTR (Left to Right) but few languages/designed are written from RTL (Right to Left).
Read MoreVibrate Android Phone Custom
You can vibrate your Android device using few lines of code in your project. Vibrator is one of the most and useful devices for mobile phones.
Read MoreHow to use session in php
PHP session is used to store information in a variable temporarily to be used across multiple pages. PHP session creates unique user id for each browser to recognize the user and avoid conflict between multiple browsers.
Read MoreHow to start coding in PHP with 'Hello world'
PHP is one of the most popular open-source and server-side scripting language. PHP is a powerful tool for making dynamic, interactive websites and you can do much more with it. It can be learned easily.
Read More