Jump to content
Fórum Script Brasil
  • 0

Não Cgo Resolver Esse Erro "notice: Undefined..."


Wagamam

Question

Precisso de ajuda na resolução so erro Não consigo resolver esse erro Notice: Undefined variable: id in c:\program files\easyphp1-7\www\page_new\backoffice\bo_index.php on line 24´

Já fiz quase tudo e não consegui resolver o problema.

Será que é da configuração do php.ini....

é urgente.

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Precisso de ajuda na resolução so erro Não consigo resolver esse erro Notice: Undefined variable: id in c:\program files\easyphp1-7\www\page_new\backoffice\bo_index.php on line 24´

Já fiz quase tudo e não consegui resolver o problema.

Será que é da configuração do php.ini....

é urgente.

O meu codigo é este...

switch ($_GET['id']){

case 1:

include "template/g_membro.php";

break;

case 2:

include "template/g_noticia.php";

break;

case 3:

include "template/g_estudante.php";

break;

case 4:

include "template/g_musica.php";

break;

os valores do id estão a ser colocados em outros ficheiros.php da seguinte forma

href="bo_index.php?id=1"...

Link to comment
Share on other sites

  • 0
Precisso de ajuda na resolução so erro Não consigo resolver esse erro Notice: Undefined variable: id in c:\program files\easyphp1-7\www\page_new\backoffice\bo_index.php on line 24´

Já fiz quase tudo e não consegui resolver o problema.

Será que é da configuração do php.ini....

é urgente.

O codigo Switch($_GET[id]) se encontra no ficheiro bo_index.php e os valores do "id" é dado no ficheiro cabecario.php onde existe links.

Exemplo

cabecario.php

<a href="bo_index.php?id=1"> Membro </a>

Link to comment
Share on other sites

  • 0
Precisso de ajuda na resolução so erro Não consigo resolver esse erro Notice: Undefined variable: id in c:\program files\easyphp1-7\www\page_new\backoffice\bo_index.php on line 24´

Já fiz quase tudo e não consegui resolver o problema.

Será que é da configuração do php.ini....

é urgente.

O codigo Switch($_GET[id]) se encontra no ficheiro bo_index.php e os valores do "id" é dado no ficheiro cabecario.php onde existe links.

Exemplo

cabecario.php

<a href="bo_index.php?id=1"> Membro </a>

este site esta no ar, não entendei

Link to comment
Share on other sites

  • 0

você já viu tentou fazer uma variavel auxiliar receber o valor do GET?

ex:

if ( isset($_GET['id']))

{

$aux=$_GET['id'];

switch($aux)

{

case 1:

include ("template/g_membro.php");

break;

case 2:

include ("template/g_noticia.php");

break;

case 3:

include ("template/g_estudante.php");

break;

case 4:

include ("template/g_musica.php");

break;

}

}

Abraços... cool.gif

Link to comment
Share on other sites

  • 0
você já viu tentou fazer uma variavel auxiliar receber o valor do GET?

ex:

if ( isset($_GET['id']))

{

$aux=$_GET['id'];

switch($aux)

{

case 1:

include ("template/g_membro.php");

break;

case 2:

include ("template/g_noticia.php");

break;

case 3:

include ("template/g_estudante.php");

break;

case 4:

include ("template/g_musica.php");

break;

}

}

Abraços... cool.gif

Obrigado

o problema era so colocar o "isset" e não era necessario criar a variavel auxiliar wink.gif

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
      651.9k
×
×
  • Create New...