~ubuntu-branches/ubuntu/saucy/ruby-erubis/saucy

« back to all changes in this revision

Viewing changes to examples/pi/example.ephp

  • Committer: Package Import Robot
  • Author(s): Laurent Bigonville
  • Date: 2012-01-26 15:15:58 UTC
  • Revision ID: package-import@ubuntu.com-20120126151558-9u7mnf9ooqnw3bwz
Tags: upstream-2.7.0
ImportĀ upstreamĀ versionĀ 2.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
   $user = "World";
 
3
   $list = array('<aaa>', 'b&b', '"ccc"');
 
4
?>
 
5
<p>Hello @{$user}@!</p>
 
6
<table>
 
7
  <tbody>
 
8
    <?php $i = 0 ?>
 
9
    <?php foreach ($list as $item) { ?>
 
10
    <?php   $i++; ?>
 
11
    <tr bgcolor="@!{$i % 2 == 0 ? '#FFCCCC' : '#CCCCFF'}@">
 
12
      <td>@!{$i}@</td>
 
13
      <td>@{$item}@</td>
 
14
    </tr>
 
15
    <?php } ?>
 
16
  </tbody>
 
17
</table>