Jump to content
Fórum Script Brasil
  • 0

Erro:"Notice: Undefined offset:"


Cássio Quintão

Question

Bom dia a todos, tenho um código que está dando este erro na base de produção e não na base teste. O erro é a partir da linha 6. Gostaria de saber se alguém pode me ajudar.

<?php

$query = mysql_query("SELECT * FROM tbl_secretaria ORDER BY secretaria ASC");

while ($fila = mysql_fetch_array($query)){

?>

<option value="<?php echo $fila[0];?>">

<?php echo $fila[1]; ?>

<?php echo $fila[2]; ?>

<?php echo $fila[3]; ?>

<?php echo $fila[4]; ?>

<?php echo $fila[5]; ?>

<?php echo $fila[6]; ?>

<?php echo $fila[7]; ?>

<?php echo $fila[8]; ?>

<?php echo $fila[9]; ?>

<?php echo $fila[10]; ?>

<?php echo $fila[11]; ?>

<?php echo $fila[12]; ?>

<?php echo $fila[13]; ?>

<?php echo $fila[14]; ?>

<?php echo $fila[15]; ?>

<?php echo $fila[16]; ?>

<?php echo $fila[17]; ?>

<?php echo $fila[18]; ?>

<?php echo $fila[19]; ?></option>

<?php }?>

Grato.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

o offset são os índices que você está tentando resgatar, a mensagem está dizendo que o índice não existe, ou seja, por exemplo: $fila[19] não existe, mas $fila[1] existe, dá um print_r($file) para ver o que retorna.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...