Paste: Beautiful php

Author: Rex Ford
Mode: php
Date: Sun, 12 Jun 2011 07:34:18
Plain Text |
   function make_table($table)
   {
		echo "<table>";
   		foreach($table as $row)
   		{
   			echo "<tr>";
   			foreach($row as $cell)
   			{
   				echo "<td>";
   				echo $cell;
   				echo "</td>";
   			}
   			echo "</tr>";
   		}
   		echo "</table>";
   }

New Annotation

Summary:
Author:
Mode:
Body: