Skip to content

Instantly share code, notes, and snippets.

@Martin1982
Created March 12, 2012 19:23
Show Gist options
  • Save Martin1982/2024116 to your computer and use it in GitHub Desktop.
Save Martin1982/2024116 to your computer and use it in GitHub Desktop.
Variable manipulation
<?php
$newVariable = 'Hello World';
echo $newVariable;
$newVariable = 'Goodbye World';
echo $newVariable;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment