4
1
Fork 0
This repository has been archived on 2019-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
Cheaterliste/insert.php
2017-04-08 11:20:41 +02:00

25 lines
560 B
PHP

<?php
session_start();
$cockDatabase = "dulow";
$host = "localhost";
$user = "root";
$password = "";
$conn = new mysqli($host,$user,$password,$cockDatabase);
if ($conn->connect_error){
die("Verbindung fehlgeschlagen: " . $conn->connect_error);
}
var_dump($_POST['url']);
if($_POST['url'] == ''){
header('Location: /');
return;
}
$url = $_POST['url'];
$author = $_SESSION['user'];
$sql = "INSERT INTO cheaterliste (url, author) VALUES('".$url."', '".$author."')";
$conn->query($sql);
?>
<meta http-equiv="refresh" content="0; url=/index.php" />