<?php
// flat_file_poll.php
// RJM Programming
// April, 2017
// Poll that uses flat_file_engine.php Flat File SQL Engine


echo "
<!doctype html>
<html>
<body>
<form method='POST' action='./flat_file_engine.php'>
Set Up SQL for Poll: <input style=width:70%; type=text name=ddl id=ddl value=\"CREATE TABLE item_poll (id,item,count); INSERT INTO item_poll (id,item,count) VALUES ('1','Item One','1'); \"></input>
<input type=submit value='Set Up Poll'></input>
</form>
</body>
</html>
";








?>
