Login
Remember
Register
Ask a Question
How a variable is declared in PHP?
0
votes
asked
Jun 4, 2020
in
PHP
by
Robindeniel
How a variable is declared in PHP?
#php-variable-declaration
#variable-declaration-php
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 4, 2020
by
Robindeniel
A PHP variable is the name of the memory location that holds data. It is temporary storage.
Syntax:
$variableName=value;
...