Skip to content

Instantly share code, notes, and snippets.

View Martin1982's full-sized avatar
🤓
Solving problems

Martin de Keijzer Martin1982

🤓
Solving problems
View GitHub Profile
<?php
echo "My first category is " . $categories[0]
?>
<?php
$categories = array('my first category', 'another one', 'etc');
?>
@Martin1982
Martin1982 / variable-manipulation.php
Created March 12, 2012 19:23
Variable manipulation
<?php
$newVariable = 'Hello World';
echo $newVariable;
$newVariable = 'Goodbye World';
echo $newVariable;
?>
@Martin1982
Martin1982 / variable.php
Created March 12, 2012 19:22
Variables
<?php
$newVariable = 'Hello World';
echo $newVariable;
?>
@Martin1982
Martin1982 / constant.php
Created March 12, 2012 19:21
Constants
<?php
define('MY_CONSTANT_NAME','The value of my constant');
echo MY_CONSTANT_NAME;
// This will show 'The value of my constant' on your screen
?>
@Martin1982
Martin1982 / helloworld.php
Created March 12, 2012 19:13
PHP Hello WOrld
<?php
echo "Hello world!";
?>