Meta
Categories
Category Archives: php
PHP Funpamentals
Basic syntax Comments // for single line /* */ for multiple line # for shell style comments Variables -starts with $ -may contain strings numbers arrays -is case sensitive Variable variables $foo = ‘bar’; $$foo = ‘baz’; Variable reference $black … Continue reading
Posted in php
Leave a comment