redirect after submit
parent
a008fca80a
commit
2065845939
|
@ -9,56 +9,62 @@ $id=$_GET['id'];
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>ThreadR - Boards</title>
|
<title>ThreadR - Boards</title>
|
||||||
%STYLESHEET%
|
%STYLESHEET%
|
||||||
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
|
<link rel="icon" type="image/png" href="%CONTENT_DIR%/img/favicon-32x32.png" sizes="32x32" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<?php
|
||||||
</head>
|
if ($_GET['action']=='submit') {
|
||||||
<body>
|
echo "<meta http-equiv='refresh' content='5;URL=%CONTENT_DIR%/board/?id=$id' name='viewport' content='width=device-width, initial-scale=1.0' />";
|
||||||
%NAVBAR%
|
} else {
|
||||||
<div class="container">
|
echo "<meta name='viewport' content='width=device-width, initial-scale=1.0' />"
|
||||||
<div class="item-1">
|
}
|
||||||
<h1><center>
|
?>
|
||||||
<?php
|
</head>
|
||||||
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
<body>
|
||||||
$error = false;
|
%NAVBAR%
|
||||||
$error_message = "";
|
<div class="container">
|
||||||
if (!$error) {
|
<div class="item-1">
|
||||||
$statement = $pdo->prepare("SELECT * FROM boards WHERE id=:id");
|
<h1><center>
|
||||||
$statement->execute(array("id"=>$id));
|
<?php
|
||||||
$result = $statement->fetch();
|
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
|
||||||
echo $result['name'];
|
$error = false;
|
||||||
}
|
$error_message = "";
|
||||||
if (!$result) {
|
if (!$error) {
|
||||||
$error_message = "Error: SQL error.\n" . $statement->queryString . "\n" . $statement->errorInfo()[2];
|
$statement = $pdo->prepare("SELECT * FROM boards WHERE id=:id");
|
||||||
}
|
$statement->execute(array("id"=>$id));
|
||||||
?>
|
$result = $statement->fetch();
|
||||||
|
echo $result['name'];
|
||||||
|
}
|
||||||
|
if (!$result) {
|
||||||
|
$error_message = "Error: SQL error.\n" . $statement->queryString . "\n" . $statement->errorInfo()[2];
|
||||||
|
}
|
||||||
|
?>
|
||||||
</center></h1>
|
</center></h1>
|
||||||
</div>
|
|
||||||
<div class="item-2">
|
|
||||||
<?php
|
|
||||||
include("./board.php");
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
<div class="item-3">
|
|
||||||
<?php
|
|
||||||
if(isset($_GET['action'])) {
|
|
||||||
if($_GET['action']=='post') {
|
|
||||||
include("./post.php");
|
|
||||||
} elseif($_GET['action']=='submit') {
|
|
||||||
$user_id=$_SESSION[user_id];
|
|
||||||
$title=$_POST['title'];
|
|
||||||
$content=$_POST['content'];
|
|
||||||
include("./submit.php");
|
|
||||||
} elseif($_GET['action']=='edit') {
|
|
||||||
include("./edit.php");
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
include("./default.php");
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
<div class="item-2">
|
||||||
|
<?php
|
||||||
|
include("./board.php");
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
<div class="item-3">
|
||||||
|
<?php
|
||||||
|
if(isset($_GET['action'])) {
|
||||||
|
if($_GET['action']=='post') {
|
||||||
|
include("./post.php");
|
||||||
|
} elseif($_GET['action']=='submit') {
|
||||||
|
$user_id=$_SESSION[user_id];
|
||||||
|
$title=$_POST['title'];
|
||||||
|
$content=$_POST['content'];
|
||||||
|
include("./submit.php");
|
||||||
|
} elseif($_GET['action']=='edit') {
|
||||||
|
include("./edit.php");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
include("./default.php");
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue