Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if (count($_POST) > 0) {
- include('conexao.php');
- $erro = false;
- $nome = $_POST['nome'];
- $url = $_POST['url'];
- $palavras_chave = $_POST['palavras_chave'];
- if(empty($nome)) {
- $erro = "Preencha o nome";
- }
- if(empty($url)) {
- $erro = "Preencha a URL";
- }
- if(empty($palavras_chave)) {
- $erro = "Preencha as palavras-chave ";
- }
- if($erro) {
- echo "<p><b>ERRO: $erro</b></p>";
- } else {
- $sql_code = "INSERT INTO url (nome, url, palavras_chave, data) VALUES ('$nome', '$url', '$palavras_chave', NOW())";
- $deu_certo = $mysqli->query($sql_code) or die($mysqli->error);
- if($deu_certo){
- echo '<script language="javascript">alert("Registro cadastrado com sucesso!");</script>';
- unset($_POST);
- }
- }
- }
- ?>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
- <title>Cadastro</title>
- </head>
- <body>
- <div class="container">
- <br><br><a href="index.php">Listar</a><br>
- <br>
- <h5>Cadastro</h5>
- <br>
- <form action="" method="POST">
- <div class="form-group">
- <label>Nome da página ou site</label>
- <input type="text" value="<?php if(isset($_POST['nome'])) echo $_POST['nome']; ?>" name="nome" class="form-control" size="50">
- </div>
- <div class="form-group">
- <label>URL</label>
- <input type="text" value="<?php if(isset($_POST['url'])) echo $_POST['url']; ?>" name="url" class="form-control" size="99">
- </div>
- <div class="form-group">
- <label>Palavras-chave (separadas por vírgula)</label>
- <input type="text" value="<?php if(isset($_POST['palavras_chave'])) echo $_POST['palavras_chave']; ?>" name="palavras_chave" class="form-control" size="99">
- </div>
- <button type="submit" class="btn btn-success">Cadastrar</button>
- </form>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment