variable dans url

variable dans url - PHP - Programmation

Marsh Posté le 02-06-2004 à 14:44:52    

salut,
alors voila j'ai une url de ce type : www.toto/toto.php?nom=yoyo
dans ma page un  
$nom=$_GET['nom'];
echo "nom";
mais des fois j'ai juste cette url www.toto/toto.php
donc ca l'ennui car il veut afficher nom mais elle n'existe pas.
comment faire un truc du genre : if exist($nom) echo $nom ?
merci


Message édité par $man le 02-06-2004 à 14:45:36
Reply

Marsh Posté le 02-06-2004 à 14:44:52   

Reply

Marsh Posté le 02-06-2004 à 14:45:22    

isset

Reply

Marsh Posté le 02-06-2004 à 14:46:16    

ui mais a ce que j'ai lu isset c'est juste si $nom est nulle, pas si elle existe pas ?


Message édité par $man le 02-06-2004 à 14:46:31
Reply

Marsh Posté le 02-06-2004 à 14:47:15    

meme si elle existe pas

Reply

Marsh Posté le 02-06-2004 à 14:47:43    

ok merci :)

Reply

Marsh Posté le 02-06-2004 à 14:51:16    

arf , j'ai toujours ce message: Notice: Undefined index: vue in c:\windows\bureau\php\toto.php on line 162
pourtatn j'ai fais ca :
$nom=$_GET['nom'];  
if (isset($nom))  
{
echo "$nom";
}
 

Reply

Marsh Posté le 02-06-2004 à 14:53:38    

 
if (isset($_GET['nom']))  
{
        $nom=$_GET['nom'];
 echo $nom;
}

Reply

Marsh Posté le 02-06-2004 à 14:53:51    

$man a écrit :

arf , j'ai toujours ce message: Notice: Undefined index: vue in c:\windows\bureau\php\toto.php on line 162
pourtatn j'ai fais ca :
$nom=$_GET['nom'];  
if (isset($nom))  
{
echo "$nom";
}


 

Code :
  1. if (isset($_GET['nom']))


---------------
StarCraft Professional Gaming Database | [Ze Topic] Starcraft/BroodWar
Reply

Marsh Posté le 02-06-2004 à 14:55:42    

arf ok, je n'assigne pas la variable en fait!
merci à vous 2 (plus à chacal_one333 qui a grilled Sielfried de pas lontent :D), je vais test ca!

Reply

Marsh Posté le 02-06-2004 à 14:57:42    

hinhin

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed