0 votes
in PHP by
How a variable is declared in PHP?

1 Answer

0 votes
by
A PHP variable is the name of the memory location that holds data. It is temporary storage.

Syntax:

$variableName=value;
...