Jump to content
  • 0

Подскажите как поступить


Alex&R
 Share

Question

Вот в чем суть вопроса.

Есть страница(index.php) с общим числом областей:

<?
$volyn="Волынская";
print "<a href=states/volyn.php>$volyn</a><br>";
?>

Переходя по ссылке попадаю на страницу заведений(places.php), где выбираю нужное мне:

<?
$zoloto="Золото";
print "<a href=volyn/places/zoloto.php>$zoloto</a><br>";
?>

Далее страница zoloto.php скоторой по ссылке перехожу в форму.

Как, прописать так, чтобы переменные $volyn и $zoloto подтягивались с предыдущих страниц и заполняли формы отвечающие за "Область" и "Заведения" с невозможностью их изменения?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Существует массив $_SESSION - в него можно записать. А вообще, по-моему, какая-то архитектрура странная. Не проще ли всё хранить в базе и доставать всё оттуда?

Link to comment
Share on other sites

  • 0

На каждом этапе. Каждому разделу указать раздел верхнего уровня чтобы получилась иерархия, в итоге, зная конечный раздел, можно будет найти всю цепочку до самого верхнего.

А вообще, всё это можно было бы сделать с использованием одной страницы, а не трёх. Хотя это зависит от конкретнойц задачи, конечно.

Edited by Int
Link to comment
Share on other sites

  • 0

Я делал так:

ссылка

<a href="test.php?id=zakaz_1">заказать</a>

код test.php

<?php 
if (isset($_GET['id']))
{
$id = $_GET['id'];
if ($id == 'zakaz_1')
{
$name = Имя;
$email = 'test@mail.ru';
$tel = '555-55-55';
$message = 'бла бла бла какой то текст';
}
}
//форма:
<input type="Text" name="email" value="<?php echo $email; ?>" maxlength="30" />
<input type="Text" name="tel" value="<?php echo $tel; ?>" maxlength="20" />
<textarea cols=40 rows=5 name="message"><?php echo $message; ?></textarea>
?>

Как то так...

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