Jump to content
  • 0

как передать массив через $_GET ?


asker2
 Share

Question

как передать массив через $_GET ? можно ли ? если да почему этот вариант не работает ?

$info = array("user" => $username, "email" => $email, "pass" => $pwd);

header("Location: add_device_form.php?status=error&problem=receiver&errors_holder=$info");

в add_device_form.php рапечатываю $errors_holder;

print_r($_GET['errors_holder'])

печатает Array

:)

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0
Нужно передавать массив в урле так:

http://example.com/index.php?array[]=value1&array[]=value2&array[]=value3

а потом ловить переменные в $_GET['array']

в массиве который я действительно хочу передать в add_device_form.php 100 ключей с значениями и вот так расписывать их по одному не очень классно. есть другие варианты ? :)

Link to comment
Share on other sites

  • 0
в массиве который я действительно хочу передать в add_device_form.php 100 ключей с значениями и вот так расписывать их по одному не очень классно. есть другие варианты ?

зачем расписывать? Есть циклы, есть ф-ция impole(), можно придумать и другие варианты.

Link to comment
Share on other sites

  • 0

куки хранятся в браузере а сессия на сервере. Сессии используют куки для хранения идентификатора. По идентификтору восстанавливается все данные сессии. Если браузер не поддерживает куки, то идентификтор передается через гет.

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.
Note: Your post will require moderator approval before it will be visible.

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.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy