Blank page, no error returning

Blank page, no error returning, what was my mistake? Please, could someone help find out what’s not working. It was supposed to simply insert,alter,consult data of my DB…

[code]<?
/*
DESEVOLVIMENTO WEB
WWW.GAHOST.COM.BR
MSN: [email protected]
HOSPEDAGEM, DOMINIOS E DESENVOLVIMENTO DE WEBSITE

OBS: POR FAVOR NÃO RETIRAR OS CREDITOS OK.
*/
//conexao com o banco de dados
$conexao = mysql_connect(“localhost”,“root”,"");
mysql_select_db(“equipe1_2011_1”);

$acao = isset( $_GET[ ‘acao’ ] ) ? $_GET[ ‘acao’ ] : ‘’;

//condições para cadastrar
if($acao == “cadastrar”) {
$nome = $_POST[‘nomeHtl’];
$categoria = $_POST[‘catHtl’];
$acomodacao = $_POST[‘tipoAcomdHtl’];
$obs = $_POST[‘obsHtl’];

$sql = mysql_query(“INSERT INTO Hoteis (’’, ‘$nome’,’$categoria’,’$acomodacao’,‘obs’)”);

	echo "<script>alert('Cadastro realizado com sucesso')</script>";
	echo "<script> window.location = 'index.php?acao=listar'</script>";

}
//condições para editar
if($acao == “alterar”) {
$codHtl = $_POST[‘codHtl’];
$nome = $_POST[‘nomeHtl’];
$categoria = $_POST[‘catHtl’];
$acomodacao = $_POST[‘tipoAcomdHtl’];
$obs = $_POST[‘obsHtl’];

$sql = mysql_query(“UPDATE hoteis set nomeHtl = ‘$nome’, catHtl = ‘$categoria’, tipoAcomdHtl = ‘$acomodacao’, obsHtl = ‘$obs’ where codHtl = ‘$codHtl’”);
echo “”;
echo "";

}
//condição para excluir
if($acao == “excluir”) {

$sql = mysql_query(“DELETE FROM hoteis where codHtl=’$codHtl’”);
echo “”;
echo "";

}

?>

Cadastro
<? if($acao == "cad_form") { ?>

Cadastrar usuario

Nome:
Categoria:
Acomodação:
Observações:
<? } ?><? if($acao == "alt_form") { ?>

Alterar usuario

<? $sql_usu = mysql_query("SELECT * FROM hoteis where codHtl='$codHtl'"); $dados_usu = mysql_fetch_array($sql_usu);?> <? //$id = $_GET['id']; //$sql_usu = mysql_query("SELECT * FROM usuario where id='$id'"); //$dados_usu =mysql_fetch_array($sql_usu);?>
      <td width="147"><div align="right">Nome: </div></td>
      <td width="243"><label>
        <input name="nome" type="text" id="nome" value="<?=$dados_usu[nomeHtl] ?>" />
      </label></td>
    </tr>
    <tr>
      <td><div align="right">Categoria:</div></td>
      <td><label>
        <input name="categoria" type="text" id="categoria" value="<?=$dados_usu[catHtl] ?>" />
      </label></td>
    </tr>
    <tr>
      <td><div align="right">Acomodação:</div></td>
      <td><label>
        <input name="acomodacao" type="text" id="acomodacao" value="<?=$dados_usu[tipoAcomdHtl] ?>" />
      </label></td>
    </tr>
            <tr>
      <td><div align="right">Observações:</div></td>
      <td><label>
        <input name="obs" type="text" id="obs" value="<?=$dados_usu[obsHtl] ?>" />
      </label></td>
    </tr>
    <tr>
      <td colspan="2"><div align="center">
          <label>
          <input type="submit" name="button" id="button" value="Alterar" />
          </label>
          <input name="id" type="hidden" id="id" value="<?=$dados_usu[codHtl]?>" />
      </div></td>
    </tr>
  </table>
</form></td>
<? } ?><? if($acao == "listar") { ?>

Listar usuarios

<? $res = mysql_query("SELECT * FROM hoteis order by codHtl desc"); while ($da_re = mysql_fetch_array($res)) {?> <? } ?>
Nome
<?=$da_re[nomeHtl] ?>
<? } ?>[/code]

seems to me the first thing you could change would be"
[php]
$acao = isset( $_GET[ ‘acao’ ] ) ? $_GET[ ‘acao’ ] : ‘’;
[/php]
to:
[php]
$acao = (isset( $_GET[ ‘acao’ ] )) ? $_GET[ ‘acao’ ] : ‘’;
[/php]
if that is not all that is wrong $acao seems to be empty, since the entire script is based on what $acao variable equals

Sponsor our Newsletter | Privacy Policy | Terms of Service