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;

Related questions

+1 vote
asked May 13, 2022 in PHP by john ganales
+1 vote
asked May 11, 2022 in PHP by sharadyadav1986
...