<?php
setcookie ("MyCookie20", "Hallo", time () + 1200);
echo $_COOKIE ["MyCookie20"];
?>
<?php
include ('/home/david/mysqldata.php');
$handle = mysql_connect ("127.0.0.1", $MYSQL_NAME, $MYSQL_PASSWORD);
mysql_query ("USE test009", $handle);
mysql_query ("INSERT INTO abc VALUES (\"010\", \"011\")", $handle);
$result = mysql_query ("SELECT * FROM abc JOIN def", $handle);
while ($row = mysql_fetch_assoc ($result))
echo $row ["abc01"] . " " . $row ["abc02"] . " " . $row ["def01"] . " " . $row ["def02"] . "<br>\n";
mysql_close ($handle);
?>
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<header></header>
<main></main>
<footer></footer>
</body>
<form action="./form.php" method="GET">
<input type="text" name="text1"></input>
<input type="submit"></input>
</form>
</html>
<?php
echo $_GET ["text1"];
?>
001 002 005 006<br>
001 002 007 008<br>
003 004 005 006<br>
003 004 007 008<br>
010 011 005 006<br>
010 011 007 008<br>
010 011 005 006<br>
010 011 007 008<br>