當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Conexao::inserir方法代碼示例

本文整理匯總了PHP中Conexao::inserir方法的典型用法代碼示例。如果您正苦於以下問題:PHP Conexao::inserir方法的具體用法?PHP Conexao::inserir怎麽用?PHP Conexao::inserir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Conexao的用法示例。


在下文中一共展示了Conexao::inserir方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: addslashes

    $tipo = addslashes($_GET['tipo']);
    if ($tipo) {
        $where1 = array("tipo" => $tipo, "sigla_idioma" => "");
        $db_tex = $base->seleciona('textos', $where1, null);
        $up_where = json_encode($where1);
        if ($db_tex) {
            if (!empty($lang)) {
                $where2 = array("tipo" => $tipo, "sigla_idioma" => $lang);
                $db_tex = $base->seleciona('textos', $where2, null);
                $up_where = json_encode($where2);
                if ($db_tex) {
                    $db_tex = $db_tex;
                } else {
                    $db_idiom = $base->seleciona('idiomas', array('sigla' => $lang, "status" => 1), null);
                    if ($db_idiom) {
                        $base->inserir('textos', array('sigla_idioma' => $lang, "tipo" => $tipo));
                        $db_tex = $base->seleciona('textos', $where2, null);
                        $up_where = json_encode($where2);
                    } else {
                        $db_tex = $base->seleciona('textos', $where1, null);
                        $up_where = json_encode($where1);
                    }
                }
            }
            $ln = $db_tex[0];
        }
    }
} else {
    $tipo = false;
}
if (!empty($ln)) {
開發者ID:xHurryx,項目名稱:WGPAINEL,代碼行數:31,代碼來源:textos.php

示例2: unset

            if (isset($poste["img_atual"])) {
                unset($poste["img_atual"]);
            }
            if (!empty($_FILES["foto"]["type"])) {
                $ext_valida = array("jpeg", "jpg", "png");
                $temp = explode(".", $_FILES["foto"]["name"]);
                $extencao_arquivo = strtolower(end($temp));
                if (($_FILES["foto"]["type"] == "image/png" || $_FILES["foto"]["type"] == "image/jpg" || $_FILES["foto"]["type"] == "image/jpeg") && $_FILES["foto"]["size"] < 100000000 && in_array($extencao_arquivo, $ext_valida)) {
                    if ($_FILES["foto"]["error"] > 0) {
                        $resultado['msg'] = "Codigo do erro:" . $_FILES["foto"]["error"];
                    } else {
                        $arquivo_tempor = $_FILES['foto']['tmp_name'];
                        $poste["foto"] = md5(uniqid(time())) . "." . $extencao_arquivo;
                        if (!file_exists("../../uploads/" . $tabela)) {
                            mkdir("../../uploads/" . $tabela, 0777, true);
                        }
                        $local = "../../uploads/" . $tabela . "/" . $poste["foto"];
                        move_uploaded_file($arquivo_tempor, $local);
                        $resultado['img_atual'] = $poste["foto"];
                    }
                } else {
                    $resultado['msg'] = "erro";
                    exit;
                }
            }
            $id = $banco->inserir($tabela, $poste);
            $resultado['id'] = $id;
        }
    }
    echo json_encode($resultado);
}
開發者ID:xHurryx,項目名稱:WGPAINEL,代碼行數:31,代碼來源:inserir.php

示例3: addslashes

<?php 
$js = "";
if (!empty($_GET['lang'])) {
    $get_lang = addslashes($_GET['lang']);
    $js = json_encode(array("sigla_idioma" => $get_lang));
} else {
    $get_lang = false;
}
if ($get_lang) {
    $disable = "";
    $db_trad = $base->seleciona('traducao', array("sigla_idioma" => $get_lang), null);
    if ($db_trad == true) {
        $dx = $db_trad[0];
        $palavas2 = json_decode(stripslashes($dx->json), true);
    } else {
        $base->inserir('traducao', array("sigla_idioma" => $get_lang, "json" => json_encode($palavas)));
        $palavas2 = $palavas;
    }
} else {
    $palavas2 = $palavas;
    $disable = "disabled";
}
?>
 
<br>
<br>        
<ul id="traducao" class="row">
<?php 
foreach ($palavas as $ide => $n) {
    echo "<li id='" . $ide . "' class='col-lg-6'><pre class='alert alert-dismissable alert-success' style='cursor: pointer;' id='" . strtolower($ide) . "' >" . $ide . "</pre><br>";
    echo "<span data-togle='" . strtolower($ide) . "'>";
開發者ID:xHurryx,項目名稱:WGPAINEL,代碼行數:31,代碼來源:palavras.php

示例4: adiciona_ao_get

  <a href="<?php 
echo adiciona_ao_get(array('exe' => 'lista'), array('id' => ''));
?>
" class="btn btn-default"><i class="glyphicon glyphicon-list"></i></a>
</div>
<br>

<?php 
if ($execulta == 'novo') {
    if (NIVEL_USUARIO == 5) {
        $arry_dados = array();
        if (!empty($_POST)) {
            $arry_dados['nome'] = isset($_POST['nome']) ? addslashes($_POST['nome']) : "";
            $arry_dados['login'] = isset($_POST['login']) ? addslashes($_POST['login']) : "";
            $arry_dados['senha'] = isset($_POST['senha']) ? md5(addslashes($_POST['senha'])) : "";
            $insert = $base->inserir($tabela, $arry_dados);
            if ($insert) {
                ?>
	
				 <script>window.location = "index.php<?php 
                echo adiciona_ao_get(array('exe' => 'lista'));
                ?>
";</script>
			<?php 
            }
        }
        ?>
	
		<form action="" method="POST">
			<h1>Novo usuario</h1>
			<div class="col-lg-6">
開發者ID:xHurryx,項目名稱:WGPAINEL,代碼行數:31,代碼來源:usuarios.php


注:本文中的Conexao::inserir方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。