<?php
$pages = array('Text1.php', 'Text2.php', 'Text3.php', 'Text4.php', 'Text5.php');
// Track $latest in either a session variable
// $current will be dependent upon the page you're on
$latest = $_SESSION['latest'];
$current = basename(__FILE__);
$currentPages = array_search($current, $pages);
$latestPages = array_search($latest, $pages);
if ($currentPages - $latestPages > 1 ) {
?>
<div class="boxed">
<a href="">Continue</a>
<br/>
<a href="Text1.php" id="createLink">Create New</a>
</div>
<?
} else {
// let user do their step
}
?>
我有一个包含五页的数组。现在这个页面steps.php
被外部化并存储在一个include()
存储在5个php页面中的an中,相同的php页面存储在数组中的数组中。
现在我想做的是用户应该遵循页面结构。因此,如果用户在数组中的一个页面上,他们将无法访问另一个页面,直到他们提交了他们当前所在的页面。
但我的问题是,如果用户点击Continue
链接,我怎样才能获得链接</a>
到正确页面的链接,以便将用户导航到他们应该正确访问的页面。