Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 158 Bytes

variables.md

File metadata and controls

10 lines (7 loc) · 158 Bytes

Variables

Variable is used to store some value in your program. PHP variables are prefixed with a dollar sign $.

<?php

$variable = 'value';