示例#1
0
				<tr>
					<th>Name</th>
					<th>List Price</th>
					<th>Saving</th>
					<th>Our Price</th>
				</tr>
			</thead>
				<?php 
foreach ($derivatives as $grp => $ders) {
    ?>
				<?php 
    $group = explode('/', (string) $grp);
    ?>
				<tbody class="group">
					<tr><td><strong><?php 
    print ucspecial($group[1]);
    ?>
</strong></td></tr>
					<?php 
    foreach ($ders as $der) {
        ?>
					<tr>
						<td>
							<input id="der<?php 
        print $der->CDer_ID;
        ?>
" class="selecti" type="radio" name="data[selection]" value="<?php 
        print $der->CDer_ID;
        ?>
" />
							<label for="der<?php 
示例#2
0
    return $t[0] . $t[1];
}
?>
<p>
	<ul id="new-cars">
		<?php 
foreach ($models as $model) {
    ?>
			<li class="car">
				<a href="/buy-new/<?php 
    print trim(strtolower($make->CMan_Name));
    ?>
/<?php 
    print trim(get_model($model->CRan_Name));
    ?>
" class="<?php 
    print get_model($model->CRan_Name);
    ?>
">
				<?php 
    print ucspecial($model->CRan_Name);
    ?>
 
				</a>
			</li>
		<?php 
}
?>
	</ul>
</p>