Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html><body>
<form method="POST" action="show_string.php">
<input type="text" name="string">
<input type="submit">
</form>
</body></html>
<?php
print $_POST['string'];
?>
<?php
mysql_connect ('localhost', 'test', 'test');
mysql_select_db ('test');
$query = "INSERT INTO foo(word) VALUES ('" . $_POST['string'] . "')";
mysql_query ($query) or die (mysql_query());
$the_index = mysql_insert_id();
$query = "SELECT word from foo WHERE pkID = " . $the_index;
$result = mysql_query($query);
while ($the_word = mysql_fetch_assoc($result))
{
print $the_word['word'];
print '<br>';
}
?>