Skip to content

Instantly share code, notes, and snippets.

@isstaif
Last active December 15, 2015 15:18
Show Gist options
  • Save isstaif/5280330 to your computer and use it in GitHub Desktop.
Save isstaif/5280330 to your computer and use it in GitHub Desktop.
A simple template using PHP
<?php
$post = array(
'title' => 'Post title!',
'body' => 'Blah blah blah blah blah blah blah blah blah blah blah '
);
echo "<h1>".$post['title']."</h1>";
echo "<p>".$post['body']."</p>";
echo "<hr />";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment