Skip to content

Instantly share code, notes, and snippets.

@snakewa
Created March 20, 2012 06:04
Show Gist options
  • Select an option

  • Save snakewa/2131873 to your computer and use it in GitHub Desktop.

Select an option

Save snakewa/2131873 to your computer and use it in GitHub Desktop.
php basic
<?php
echo "cm320.2<br>\n";
echo "PHP and MySQL<br>\n";
?>
<h2>Hello <?php echo $_GET['name']; ?><h2>
<?php
$basic_height = 200;
?>
<img src="tree.png" height="<?php echo $basic_height * 1 ?>"/>
<img src="tree.png" height="<?php echo $basic_height * 2 ?>"/>
<img src="tree.png" height="<?php echo $basic_height * 3 ?>"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment