PAD - PHP Application Driver


home | manual | reference | regression | sequence | develop | apps


Tags/switch

PHP
tags/switch.php
HTML
tags/switch.pad
Result
<?php

$users
= [
[
'name' => 'bob', 'phone' => '555-3425' ],
[
'name' => 'jim', 'phone' => '555-4364' ],
[
'name' => 'joe', 'phone' => '555-3422' ],
[
'name' => 'jerry', 'phone' => '555-4973' ]
];

?>
<table border="1">
{users}
<tr bgcolor="{switch 'pink' , 'orange'}">
<td>{$name}</td>
<td>{$phone}</td>
</tr>
{/users}
</table>
bob 555-3425
jim 555-4364
joe 555-3422
jerry 555-4973



home | manual | reference | regression | sequence | develop | apps

(c) 2003-2025 Herbert Groot Jebbink