Skip to content

Instantly share code, notes, and snippets.

@ryuichimatsumoto-single
Created March 27, 2012 14:56
Show Gist options
  • Save ryuichimatsumoto-single/2216590 to your computer and use it in GitHub Desktop.
Save ryuichimatsumoto-single/2216590 to your computer and use it in GitHub Desktop.
array to print to html
<?php
/**
* デザイナーとの分業しやすいソースコード
* This source use if corder and designer divide your works.
*表示の為の連想配列(array to print to html)
*/
$data = array
(
0 => "column0",
1 => "column1",
2 => "column2",
3 => "column3",
4 => "column4"
)
?>
<!--html part-->
<html>
<body>
<table>
<?php foreach($data as $key => $value) { ?>
<tr>
<td><?php echo $key; ?></td>
<td><?php echo $value; ?></td>
</tr>
<?php }?>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment