示例#1
0
    }
}
if ($action == "edit") {
    try {
        $transaction = new Transaction();
        $categoriaDestaque = new Categoriadestaque();
        $categoriaDestaque->id = $_POST['id'];
        $categoriaDestaque->texto = $texto1;
        $categoriaDestaque->link = $link;
        $categoriaDestaque->ativo = $ativo;
        if (trim($foto1) == "") {
            $categoriaDestaque->imagem = $_POST['foto1only'];
        } else {
            $categoriaDestaque->imagem = $foto1;
        }
        $id = DAOFactory::getCategoriadestaqueDAO()->update($categoriaDestaque);
        $transaction->commit();
        echo "<meta http-equiv='refresh' content=3;url='categoriaDestaque.php'>";
    } catch (Exception $exc) {
        //header('location: login.php?msg=error');
        echo $exc;
    }
}
?>


<!DOCTYPE html>
<html>

    <head>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
示例#2
0
                                                </a>

                                            </div>
                                            <table class="table table-striped custab">
                                                <thead>

                                                    <tr>
                                                        <th>Imagem </th>
                                                        <th>Texto </th>
                                                        <th>link</th>
                                                        
                                                        <th class="text-center">Ações</th>
                                                    </tr>
                                                </thead>
                                                <?php 
$array = DAOFactory::getCategoriadestaqueDAO()->queryAll();
$count = count($array);
for ($i = 0; $i < $count; $i++) {
    $id1 = $array[$i]->id;
    $texto = $array[$i]->texto;
    $link = $array[$i]->link;
    $imagem = $array[$i]->imagem;
    ?>
       
                                                    <tr>
                                                        
                                                        <td><img src="../imagem/<?php 
    echo $imagem;
    ?>
" style="width: 100px;height: 60px"></td>
                                                        <td><?php 
示例#3
0
<?php

include 'sessao.php';
require_once 'conexao.php';
include '../generated/include_dao.php';
$transaction = new Transaction();
$resultado = DAOFactory::getCategoriadestaqueDAO()->load($_GET['codigo']);
$texto = $resultado->texto;
$link = $resultado->link;
$imagem = $resultado->imagem;
$ativo = $resultado->ativo;
$id = $resultado->id;
?>

<!DOCTYPE html>
<html>

    <head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">


        <title>�rea Administrativa AKIPOM</title>
        <meta name="generator" content="Bootply">
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
        <script src="//code.jquery.com/jquery-2.1.0.min.js"></script>
        <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
        <script src="editor.js"></script>

        <link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
        <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet">
        <link href="editor.css" type="text/css" rel="stylesheet"/>
        <script src="http://js.nicedit.com/nicEdit-latest.js" type="text/javascript"></script>