code:
PHP Code:<table width="100%" cellpadding="10" cellspacing="0">
<tr>
<td bgcolor="#B5B59C" background="gold_bg.gif">
<?PHP
// This is the start of the actual page contents
$developer1 = array('Name' => 'Emanuele Sparvoli', 'Location' => 'Italy', 'Sourceforge' => 'godai78', 'Work Areas' => 'PHP, MySQL, Perl');
$developer2 = array('Name' => 'Alan M. Cramer', 'Loation' => 'Australia', 'Sourceforge' => 'daqube', 'Work Areas' => 'PHP, MySQL, Perl, Graphics');
$developer3 = array('Name' => 'Dave Smulders', 'Location' => 'The Netherlands', 'Sourceforge' => 'tss68nl', 'Work Areas' => 'ASP, Graphics, client side(javascript)');
/*
echo" loop 1<br><br> ";
$developer1 = array('Name' => '****', 'Location' => 'Italy', 'Sourceforge' => '****', 'Work Areas' => 'PHP, MySQL, Perl');
$developer2 = array('Name' => '****', 'Location' => 'Australia', 'Sourceforge' => '****', 'Work Areas' => 'PHP, MySQL, Perl, Graphics');
$developer3 = array('Name' => '****', 'Location' => 'The Netherlands', 'Sourceforge' => '****', 'Work Areas' => 'ASP, Graphics, client side(javascript)');
while(list ($key, $val) = each($developer1))
{
print $key . " = ". $val ;
print "<br />";
}
*/
?>
</body>
</html>




Reply With Quote