Пример #1
0
<html>
	<?php 
include 'header.php';
?>
<body>
	<?php 
include 'functions.php';
?>
	<?php 
include 'connectdb.php';
?>
	<?php 
//Getting data from the former page via POST method
$id = $_POST["id"];
$question = $_POST["question"];
$answer = $_POST["answer"];
addQuestion($id, $question);
addAnswers($answer);
//Redirect to event page
header("Location: event-settings.php?id=" . $id);
?>
</body>
</html>
Пример #2
0
function changeAnswers($uid, $pid, $add, $remove)
{
    mysql_query('START TRANSACTION');
    addAnswers($uid, $pid, $add);
    removeAnswers($uid, $pid, $remove);
    mysql_query('COMMIT');
}