From 9861f24580c89729e393044aee95a2a918a9a530 Mon Sep 17 00:00:00 2001 From: nakadai Date: Fri, 24 Oct 2014 23:56:57 +0000 Subject: [PATCH] Fix missing PHP closing tag. --- _posts/07-02-01-Interacting-via-Code.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_posts/07-02-01-Interacting-via-Code.md b/_posts/07-02-01-Interacting-via-Code.md index d330223..e555f57 100644 --- a/_posts/07-02-01-Interacting-via-Code.md +++ b/_posts/07-02-01-Interacting-via-Code.md @@ -15,6 +15,7 @@ presentation logic, using code that might look like this: foreach ($db->query('SELECT * FROM table') as $row) { echo "
  • ".$row['field1']." - ".$row['field1']."
  • "; } +?> {% endhighlight %}