envoyer un tableau dans une URL

envoyer un tableau dans une URL - PHP - Programmation

Marsh Posté le 06-03-2003 à 12:32:04    

j'ai un tableau dans ma page et je veux l'envoyer en paramètre a une autre
 
<a href='autrepage.php?tab=montableau'>envoyer</a>
 
mais ca marche pas..
j'ai essayer différentes combinaisons de [] aussi mais ca marche pas non plus.. quelqu'un pourrait m'aider ? :)

Reply

Marsh Posté le 06-03-2003 à 12:32:04   

Reply

Marsh Posté le 06-03-2003 à 12:36:33    

Reply

Marsh Posté le 06-03-2003 à 13:01:46    

yeah ca marche
 

Citation :


oji at programmer dot net
12-Oct-2000 01:17  
 
PASSING AN ARRAY BETWEEN PAGES WITH SERIALIZE;  
1st PAGE)  
$var=array("a","b","c" );  
$var=serialize($var);  
$var=urlencode($var);  
#pass the $var via hidden or get method  
2nd PAGE)  
$var=//http post/get ["var"]  
$var=stripslashes($var); //no need to urldecode...rather strip the slashes  
$var=unserialize($var);  
foreach($var as $element){  
echo "this->$element
";  
}  
 
-oji  
;0)


 
tkX :)

Reply

Sujets relatifs:

Leave a Replay

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