Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. include "scripts/conexao.php";
  3.  
  4.     function verificaJogoCadastrado(){
  5.         $selectJogo = mysql_query("SELECT * FROM jogo");
  6.             if(mysql_num_rows($selectJogo) > 0){
  7.             echo 'Nenhum jogo cadastrado';
  8.         }else{
  9.             $fetch = mysql_fetch_array($selectJogo);
  10.             return $fetch['campo'];
  11.         }
  12.     }
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement