Jump to content
  • 0

Сессии PHP


banyman
 Share

Question

Здравствуйте!

Подскажите, пожалуйста...

нужно сохранить значение переменной в сессии и передавать при редиректе на следующий шаг в программе

длаю так на первом шаге

session_start(); if(!isset($_SESSION['inv_id']))$_SESSION['inv_id']=$_REQUEST['inv_id'];
session_register('inv_id');

в этом же скрипте идет следующее действие ии мне нужно тут вывести зачение переменной

делаю так

echo $inv_id = $_REQUEST['inv_id'];

но переменная пустая :)

формы тут не применяются, по этому используются сесии.....

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

предлагаю такое решение:

page1.php

<?
session_start();
if(!isset($_SESSION['inv_id'])){
$_SESSION['inv_id'] = $_GET['inv_id'];
}
?>

page2.php

$inv_id = $_SESSION['inv_id'];
echo $inv_id;

но в принципе можно немного ваш код изменить:

вместо этого:

echo $inv_id = $_REQUEST['inv_id'];

сделать это:

echo $_SESSION['inv_id'];

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