par
mario » 01 mars 2006, 21:06
<?php
$str = parse_url('http://www.monsite.fr/index.php?p=accueil&l=fr&m=0');
parse_str($str['query'],$tab);
/*
Array
(
[p] => accueil
[l] => fr
[m] => 0
)
*/
echo $tab['p']; // affiche accueil
?>
[php]<?php
$str = parse_url('http://www.monsite.fr/index.php?p=accueil&l=fr&m=0');
parse_str($str['query'],$tab);
/*
Array
(
[p] => accueil
[l] => fr
[m] => 0
)
*/
echo $tab['p']; // affiche accueil
?>[/php]