ok

Mini Shell

Direktori : /home/viveiroimperium/www/admin/
Upload File :
Current File : /home/viveiroimperium/www/admin/projetos.php

<?php include("includes/topo.php"); ?>

<div class="alert alert-success" id="sucesso_user" style="display:none">
  <strong>Sucesso!</strong> Informações salvas/alteradas com sucesso.
</div>   

<?php

$x=0;
$db = new DB();    
		

//FAZ A INSERÇAO NO BANCO DE DADOS
if(isset($_GET['action']) && $_GET['action']==1){
	
		$nomeArquivo = trim(strtolower(uniqid().'_'.$_FILES["imagem"]["name"]));
		$tamanhoArquivo = $_FILES["imagem"]["size"];
		$nomeTemporario = $_FILES["imagem"]["tmp_name"];
		$nomeTipo = $_FILES["imagem"]["type"];
	
		$arq_new = '../img/project/'.$nomeArquivo;
		move_uploaded_file($nomeTemporario, ($arq_new));
			
		$sel = $db->select("INSERT INTO projetos (titulo_projeto, texto_projeto, img_projeto, tipo) VALUES ('$titulo_projeto', '$texto_projeto', '$nomeArquivo', '$tipo')");
		echo '<script>$("#sucesso_user").show();</script>';
			

//FAZ A PESQUISA PARA ALTERAÇAO NO BANCO DE DADOS	
} else if(isset($_GET['action']) && $_GET['action']==2){
	
	$x=1;
	
	$sel = $db->select("SELECT * FROM projetos WHERE id_projeto='$id' LIMIT 1");
	$ln = $db->expand($sel);
	
	$titulo_projeto = $ln['titulo_projeto'];
	$texto_projeto = $ln['texto_projeto'];
	$tipo = $ln['tipo'];
	
	
//FAZ A exclusao NO BANCO DE DADOS		
} else if(isset($_GET['action']) && $_GET['action']==3){
	
	$sel = $db->select("DELETE FROM projetos WHERE id_projeto='$id' LIMIT 1");
	echo '<script>$("#sucesso_user").show();</script>';
	
	
//FAZ A ALTERAÇAO NO BANCO DE DADOS		
} else if(isset($_GET['action']) && $_GET['action']==4){
	
		
		$nomeArquivo = trim(strtolower($_FILES["imagem"]["name"]));
		$tamanhoArquivo = $_FILES["imagem"]["size"];
		$nomeTemporario = $_FILES["imagem"]["tmp_name"];
		$nomeTipo = $_FILES["imagem"]["type"];
	
		if(!empty($nomeArquivo)){
			$arq_new = '../img/project/'.$nomeArquivo;
			move_uploaded_file($nomeTemporario, ($arq_new));
			$sel = $db->select("UPDATE projetos SET titulo_projeto='$titulo_projeto', texto_projeto='$texto_projeto', img_projeto='$nomeArquivo', tipo = '$tipo' WHERE id_projeto='$id' LIMIT 1");	
		} else {
			$sel = $db->select("UPDATE projetos SET titulo_projeto='$titulo_projeto', texto_projeto='$texto_projeto', tipo='$tipo' WHERE id_projeto='$id' LIMIT 1");	
		}
		
			
		echo '<script>$("#sucesso_user").show();</script>';
			
	
}
?>

<div class="panel panel-primary">

	<div class="panel-heading">
		<h4 class="panel-title"><h4>Cadastro de matérias no Blog</h4></h4>
	</div>
				


<?php
//SE FOR UPDATE
if($x==1){
	echo '<form method="post" action="?action=4" enctype="multipart/form-data">';	
	echo '<input type="hidden" name="id" value="'.$id.'">';
	
// INSERÇAO NORMAL	
} else {
	echo '<form method="post" action="?action=1" enctype="multipart/form-data">';
}
?>
<div class="row">

	<div class="col-md-12">&nbsp;</div>
	
    <div class="col-md-12">
    
    	<div class="col-md-8">
           <div class="form-group">
                <label for="exampleInputEmail1">Título</label>
                <input type="text" class="form-control" name="titulo_projeto" required="required" value="<?php if($x==1){ echo $titulo_projeto;} ?>"/>
           </div>
        </div> 

        <div class="col-md-4">
           <div class="form-group">
                <label for="exampleInputEmail1">Categoria</label>
                <select class="form-control" name="tipo" required="required">
                	
                	<?php if($x==1){

                    if($ln['tipo']==0){
                      echo '<option selected value="0">REFLORESTAMENTO</option>';
                    }if($ln['tipo']==1){
                      echo '<option selected value="1">SUPRESSÃO DE ARVORES</option>';
                    }if($ln['tipo']==2){
                      echo '<option selected value="2">LEVANTAMENTO DE FAUNA</option>';
                    }

                  } ?>


                  <option>Selecione</option>
                	<option value="0">REFLORESTAMENTO</option>
                	<option value="1">SUPRESSÃO DE ARVORES</option>
                	<option value="2">LEVANTAMENTO DE FAUNA</option>
                </select>					
                </select>
           </div>
        </div>  
        
        <div class="col-md-12">
           <div class="form-group">
                <label for="exampleInputEmail1">Texto</label>
                <textarea class="form-control" required="required" style="height:100px" name="texto_projeto"><?php if($x==1){ echo $texto_projeto;} ?></textarea>
           </div>
        </div> 
        
        
        <div class="col-md-12">
           <div class="form-group">
                <label for="exampleInputEmail1">Imagem - <small>(1200 x 800)</small></label>
                <input type="file" class="form-control" name="imagem" <?php if($x==0){ echo 'required="required"';} ?> />
           </div>
        </div> 
        
        <hr>
        
        <div class="col-md-12">
        <button type="submit" class="btn btn-primary">SALVAR</button>
        </div>   
        
        <div class="col-md-12">&nbsp;</div>
           
   </div>

</div>                            
      
</div>    



<div class="panel panel-primary">

	<div class="panel-heading">
		<h4 class="panel-title"><h4>Projetos</h4></h4>
	</div>
				

<ul class="list-group">
					
	<?php
		$hoje=date("Y-m-d");
		$db = new DB();    
		$sel = $db->select("SELECT * FROM projetos");
		if($db->rows($sel)){
			$x=1;	
			while($yy = $db->expand($sel)){
								
				echo'
					
					<li class="list-group-item">
						<a  data-toggle="collapse" style="text-transform:uppercase">'.$yy['titulo_projeto'].'</a>				
						<a href="?id='.$yy['id_projeto'].'&action=3" style="float:right;"><i class="fa fa-trash"></i></a>
						<a href="?id='.$yy['id_projeto'].'&action=2" style="float:right; margin-right:8px;"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></a>
						<a href="fotos_projetos.php?id='.$yy['id_projeto'].'" style="float:right; margin-right:8px;"><i class="fa fa-file-image-o" aria-hidden="true"></i></a>
						
					</li>
				';
				$x++;	
			}
		}
	
	?>
	

</ul>                           
      
</div> 



                     


<?php include("includes/rodape.php"); ?>

Zerion Mini Shell 1.0