
07.03.2009, 19:16
|
|
Познавший АНТИЧАТ
Регистрация: 24.06.2008
Сообщений: 1,996
С нами:
9410786
Репутация:
2731
|
|
Вот что надумал я =)
PHP код:
function marray($string) {
$all=explode("&",$string);
$first=explode("=",$all[0]);
$second=explode("=",$all[1]);
print_r($first);
print_r($second); }
|
|
|