Skip to content

Instantly share code, notes, and snippets.

View Antimatterr's full-sized avatar
💭
☮hola

sidhant singh Antimatterr

💭
☮hola
View GitHub Profile
@mulderu
mulderu / php-cheat-sheet-01.md
Last active June 8, 2021 12:04
php cheat sheet , php look up code, php simple guide
# syntax
array ( "key" => "value", … );
die("message");
do { block } while (condition);
$x = 1; 
while($x <= 5) {
    echo "The number is: $x <br>";
    $x++;
}