$sql_bloco_topo = mysqli_query($conn, "SELECT * FROM sistema_template WHERE posicao = '3' and status = '1' ORDER BY ordem ASC");
while ($bloco_topo = mysqli_fetch_array($sql_bloco_topo)) {
$include_posicao = null;
$include_posicao = $bloco_topo['id'];
include('' . $bloco_topo['url'] . '');
}
?>
Notice: Undefined index: s in /var/www/sites/circuitomt/index.php on line 164
$sql_blocos = mysqli_query($conn, "SELECT * FROM sistema_template WHERE posicao = '1' and status = '1' ORDER BY ordem ASC");
while ($bloco = mysqli_fetch_array($sql_blocos)) {
$include_posicao = $bloco['id'];
include('' . $bloco['url'] . '');
}
?>
include('widget.php'); ?>
$sql_bloco_rodape = mysqli_query($conn, "SELECT * FROM sistema_template WHERE posicao = '4' and status = '1' ORDER BY ordem ASC");
while ($bloco_rodape = mysqli_fetch_array($sql_bloco_rodape)) {
$include_posicao = null;
$include_posicao = $bloco_rodape['id'];
include('' . $bloco_rodape['url'] . '');
}
?>