Monday, December 6, 2021

PHP Variable How to Use In PHP Programming - Basic PHP

 








Variable is a box where we store our data for reusing this when we required.


$firstName = 'Anil';
$lastName = 'Singh';

echo $firstName .' '.$lastName;

0 comments

Post a Comment