Login   Register  
PHP Classes
elePHPant
Icontem

File: exemplo_restrito/view/lista.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Marcio Ghiraldelli  >  FF-MVC  >  exemplo_restrito/view/lista.php  >  Download  
File: exemplo_restrito/view/lista.php
Role: Example script
Content type: text/plain
Description: Visão da ação Sistema
Class: FF-MVC
MVC 2 implementation based on Java Struts
Author: By
Last change:
Date: 2007-08-06 13:35
Size: 377 bytes
 

Contents

Class file image Download
<h2>Sistema - Lista de clientes</h2>

Estou aqui: <strong><?=__FILE__?></strong><br />
Eu sou o arquivo de visão "lista" da ação "sistema".<br />
Estou mostrando os dados que a classe dessa ação populou no REQUEST.<br />

<ul>


<?php
foreach($_REQUEST['clientes'] as $cliente) {
  print 
"<li>"$cliente ."</li>";
}
?>


</ul>


<a href="/do/login">Sair</a>