internetprogrammierung/php/generateLink.php

41 lines
982 B
PHP
Raw Normal View History

2018-05-26 14:33:15 +02:00
<?php
$uniqueID = uniqid();
$resultStr = "Neuer eintrag über: http://localhost/github/ipr-projekt/entry.php?tan=";
//Final link
//$resultStr = "Neuer eintrag über: http://localhost/friendsbook/entry.php?tan=";
2018-05-26 15:09:18 +02:00
$resultStr = $resultStr . $uniqueID;
2018-05-26 14:33:15 +02:00
2018-05-26 15:09:18 +02:00
insertTan($uniqueID);
2018-05-26 14:33:15 +02:00
$HTMLJSON = array('html' => $resultStr);
echo json_encode($HTMLJSON);
2018-05-26 15:09:18 +02:00
function insertTan($tan) {
//Stelle DB verbindung her
$user = 'root';
$password = 'root';
$db = 'friendsbook';
$host = 'localhost';
$port = 3306;
$database = new mysqli($host, $user, $password, $db, $port);
if ($database->connect_error) {
die('Connect Error (' . $database->connect_errno . ') ' . $database->connect_error);
}
$stmt = $database->prepare("INSERT INTO tans (tan, used) VALUES (?, ?)");
$false = false;
$stmt->bind_param("si", $tan, $false);
try {
$stmt->execute();
} catch (PDOException $e) {
$e->getMessage();
}
}
2018-05-26 14:33:15 +02:00
?>