What are the different tables present in mysql?
Total 5 types of tables we can create
1. MyISA...
Read More
How To Submit A Form Without Submit Button Php Jquery Javascript??
Easy way to save a form without using a submit bu...
Read More
What is the difference between single quotes and double quotes?
Single quoted strings will display things almost c...
Read More
What is the Scope Resolution Operator?
"::" double colons is the scope operator it is use...
Read More
What is difference between require() and include()?
require() and include() both are used for inclu...
Read More
How PHP Reverse Number Program Works?
It is very easy to reverse a number using PHP stri...
Read More
How to include a file to a php page?
We can include a file using " include(); " or " re...
Read More
What is difference between require_once() and require()??
The main and basic difference between them is ......
Read More
What is the difference between GET and POST method?
Whenever we fill any form on the internet we can u...
Read More
How we can retrieve the data in the result set of MySQL using PHP?
1. mysql_fetch_row
This function will return a ro...
Read More
What is the use of in_array() function in PHP?
If you want to check particular value exists in an...
Read More
How to get the date of post in a separate day, month and year variables wordpress.??
Sometimes our custom design requires Day, month an...
Read More
Create a chess board using for loop php
In this Post we will create a chessboard pattern,...
Read More
What are the different types of errors in PHP?
There are three types of errors in PHP.
1. Noti...
Read More
What is difference between echo() and print()?
introduction:
echo and print both are used to dis...
Read More
In a PHP class what are the three visibility keywords of a property or method?
public, private and protected. The default is publ...
Read More
Who is the father of php and explain the changes in php versions?
Rasmus Lerdorf for version changes go to http://ph...
Read More
How to create a session? How to set a value in session ? How to Remove data from a session?
Create session : session_start();
Set value into...
Read More
What is the difference between Session and Cookie?
The main difference between sessions and cookies i...
Read More
require_once(), require(), include().What is difference between them?
require() includes and evaluates a specific file,...
Read More
What are some of the big changes PHP has gone through in the past few years?
There are a number, but the big ones people are lo...
Read More
In PHP what is the difference between a Class and an Interface?
Interfaces do not contain business logic, only met...
Read More
How can we encrypt and decrypt a data present in a mysql table using mysql?
AES_ENCRYPT () and AES_DECRYPT ()
Read More