require_once("../../adm/tabela/classe.Conexao.php"); require_once("../../adm/tabela/classe.Jogos.php"); $oJogo = new Jogos(); $oJogo->post = $_POST; array_walk($oJogo->post, 'addslashes'); if (is_numeric($oJogo->post['rodadai']) && is_numeric($oJogo->post['rodadaf'])) { $oJogo->post['rodadai'] = mb_convert_encoding($oJogo->post['rodadai'], 'UTF-8', 'UTF-8'); $oJogo->post['rodadaf'] = htmlentities($oJogo->post['rodadaf'], ENT_QUOTES, 'UTF-8'); } else { $oJogo->post['rodadai'] = ''; $oJogo->post['rodadaf'] = ''; } $oJogo->campeonato = 17; ?>
|