I'm Rajasekar - Web developer, Freelancer, Blogger and Owner of DeveloperDesks. From India lives in Bahrain. I love to do coding, Creating websites and trying different with code and designs. You Can Hire Me
Facebook Lite is a lightweight Android app for emerging markets – mark zuckerberg (Chairman & CEO of Facebook) Now days, Most of our hours(may be minutes) we spend our time with facebook. Initially we used to access facebook in computer or laptops, but now every one used mobile phones(android, iphone models), but we bother about data…
Hello friends, Previous chapter we learned full Register form with email verification code. Today we are going to learn Check existing username and match password using ajax in form. While register the form we have check whether the username is already exist in the Database, Samething we do while login to check the confirmation password…
Hello Developers, For Previous session we learned only login form using with session and database, Here We are going to full Registration form with sample coding. Php registration form with email verification Step 1: First Create Config file for database connection named as config.php Please Check previous link for creating DB and Table Step 2…
Every one more exited with the new android version of LOLLIPOP. Some of them have updated lollipop via OTA (Over-The-Air) their mobile and enjoying its features. For MOTO serious, Moto x, Moto G (1st and 2nd generation), Moto E 2nd Generation have lollipop update directly to your phone. Still didn’t Check, Just go with steps, Settings ->…
What Is Cookie? Cookie is a small file embedded with server to the user’s browser. Its mainly used to Get or Identify the user details. Every time the same computer requesting a page with a browser, it will also send the cookie. By locally we said, Its stored the pages and details in you browser…
For Previous chapter we already know what is session and how to set and destroy. So here, We are going to learn how to using PHP code for login page using session without stored details in database. Php code for login page using session Example 1. First Create login page and named as Index.php Code <?php…
For Previous chapter we learn how to create login-page-using-session-without-stored-details-in-database, Here We go to lear how we use login page with session using mysql database php code for login page with database First you have a knowledge in mysql with CURD(Create, Update, Read, Delete) Syntax. If you had then Go. Step 1: Run Xampp Server, Create Database…
How to Handle session variables in Php Session is nothing but way to store a details or information (using variables) in multiple pages. Its Not like as Cookie. The difference is details are not stored in the computer browser as like as cookie. What is PHP Session? – Simple and clear Explanation When You open a…
If we have a very large array values in Indexed or Associative array, we have to search or filter the particular array value or key. Array_Search function is used to find the value. This function used to search an array for a value and returns the key. <?php $search =array(‘a’=>’php’,’b’=>’css’,’c’=>’html,’d’=>’dssd’,’e’=>’eeee’,f=>’fdfd’,’g’=>’dsfsd’,….); echo array_search(‘css’,$search); ?> In the…
Function to find particular value or key in the array for php – In_array In_array Functions is used to find the value in the array list using this function you can find the value is present or not in array queue. syntax: In_array(); for example have to find “Developerdesks” in the given array <?php $var =…