Implement generic redirect helper
This commit is contained in:
parent
41e2ffeee0
commit
7dec683bc4
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
include("settings.php");
|
include("settings.php");
|
||||||
|
include("functions.php");
|
||||||
|
|
||||||
session_start();
|
session_start();
|
||||||
|
|
||||||
$db = new SQLite3('ask.db');
|
$db = new SQLite3('ask.db');
|
||||||
|
@ -58,6 +60,5 @@ else{
|
||||||
echo("<a href='/login.php'>Login</a>");
|
echo("<a href='/login.php'>Login</a>");
|
||||||
}
|
}
|
||||||
echo("</div>");
|
echo("</div>");
|
||||||
//header("Location: /login.php"); die();
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
3
user.php
3
user.php
|
@ -200,7 +200,8 @@ if(isset($_GET["p"])){
|
||||||
// Time
|
// Time
|
||||||
$time->settimestamp($current["q_date"]);
|
$time->settimestamp($current["q_date"]);
|
||||||
echo("\t\t\t\t\t");
|
echo("\t\t\t\t\t");
|
||||||
echo('<a href="?p=' . $current["id"] . '">');
|
$_GET["p"] = $current["id"];
|
||||||
|
echo('<a href="' . redirect("user", $_GET) . '">');
|
||||||
echo("<p class='question-date'>" . $time->format("Y-m-d h:i:s") . "</p>");
|
echo("<p class='question-date'>" . $time->format("Y-m-d h:i:s") . "</p>");
|
||||||
echo("</a>\n");
|
echo("</a>\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue