Login   Register  
PHP Classes
elePHPant
Icontem

File: templates/template/details.tpl

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Jorge Prado  >  My Rad 4 PHP  >  templates/template/details.tpl  >  Download  
File: templates/template/details.tpl
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: My Rad 4 PHP
Generate PHP class from MySQL table
Author: By
Last change: update version 1.0
Date: 2013-05-10 10:32
Size: 1,409 bytes
 

Contents

Class file image Download
{include file='header.tpl'}
            <div class="main">
                <h1 align="center">{$detailstitlelabel} {$titulo}</h1>
                <a href="{$rutabase}index.php">{$homelabel}</a>
                <div class="DD">
                    <form method="post" action="edit.php?tabla={$tabla}&idreg={$idregistro}" name="editar" enctype="multipart/form-data">
                        <table class="mytable">
                            {foreach $acampos as $campo}
                            {foreach $campo as $value}
                            <tr>
                                <td>
                                    {$value[0]}
                                </td>
                                <td>
                                    {$value[1]}
                                </td>
                            </tr>
                            {/foreach}               
                            {/foreach}                                                   
                            <tr>
                                
                                <td><a href="list.php?tabla={$tabla}" class="DDLightHeader">{$returnlistlabel}</a></td>
                            </tr>
                        </table>
                    </form>
                </div>
                
            </div>
            <div class="clear">
            </div>

        </div>
    </body>
</html>