Amit Pandey's post page #14

Functions in PHP - how to use with complete example

  • 16 Jul 2023
  • 0

PHP function is a piece of code that can be reused many times. PHP functions are similar to other programming languages.

Check a Device's Network Connection with complete example

  • 16 Jul 2023
  • 0

Device can have two types of network connections, either a Wi-Fi or a mobile network connection. If a network connection is unavailable, android appli...

What is use of supportsRtl true in android example

  • 16 Jul 2023
  • 1

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)...

Jquery Ajax pagination with php with complete example

  • 16 Jul 2023
  • 1

In this article, we’re going to explain how to paginate your data using PHP and AJAXwithout page reloads and without a click, Yes without anywhere...

jQuery ajax GET example with PHP with complete example

  • 16 Jul 2023
  • 0

jQuery Ajax is the powefull tool of jQuery, You can create attractive webpage with the help of JQuery ajax. Ajax methods return a superset of the obje...

How to get field name in mysqli using php with example

  • 16 Jul 2023
  • 1

Suppose, you want to show all record of the database table and you don't know about the table detail like how much column and how much rows...

How to create MySql database connection in php example

  • 16 Jul 2023
  • 0

Whenever you want to save some important data on database you must need a connection between your project to MySQL. The tutorial takes you through...

How to use session in php code - with complete example

  • 16 Jul 2023
  • 0

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 brows...

How to create multidimensional Array in php example

  • 16 Jul 2023
  • 0

We know an array is a special variable, which can hold more than one value in one single variable. In PHP array can be used multiple types which...