-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsalvarlayout.php
22 lines (19 loc) · 1.03 KB
/
salvarlayout.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
if (realpath(__FILE__) === realpath($_SERVER['SCRIPT_FILENAME'])) header('Location: '.$urlHost);
//https://wp-mix.com/php-protect-include-files/
if(isset($_POST['salvar'])){
session_start();
require "config.php";
include 'sessao.php';
$paleta = filter_input(INPUT_POST, 'paleta'); //cores dos backgrounds, cabeçalhos, botões, etc.
$textoestilo = filter_input(INPUT_POST, 'textoestilo'); //fonte dos títulos
$cordotitulo = filter_input(INPUT_POST, 'cordotitulo'); //cor dos títulos
$divisor = filter_input(INPUT_POST, 'divisor'); //divisores
$fontetexto = filter_input(INPUT_POST, 'fontetexto'); //fonte dos textos
$cordotexto = filter_input(INPUT_POST, 'cordotexto'); //cor dos textos
$salvarlayout = $pdo->prepare("UPDATE usuarios_cadastrados SET paleta = ?, textoestilo = ?, cordotitulo = ?, divisor = ?, fontetexto = ?, cordotexto = ? WHERE id = ?");
$salvarlayout->execute(array($paleta, $textoestilo, $cordotitulo, $divisor, $fontetexto, $cordotexto, $row['id']));
header('Location: '.$urlHost.'/site.php');
exit;
}
?>