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="http://somedomain.com/somescript.php">
<input type="text" name="thedata">
<input type="submit">
</form>
</body>
</html>
$result = mysql_query ($query) or die (mysql_error());
$result = mysql_query($some_select_query);
if ($result === FALSE)
{
print "I could not perform the query. Continuing";
}
else
{
while ($mydataarray = mysql_fetch_array ($result))
{
.
.
.
}
}
GET /mypath/myscriptname.php?fubar=1 HTTP/1.1[enter]
Host: mywebserverhostname.com[enter]
[enter]
POST /mypath/myscriptname.php HTTP/1.1[enter]
Host: mywebserverhostname.com[enter]
Content-Type: application/x-www-form-urlencoded[enter]
Content-Length: 11[enter]
[enter]
foo=3&bar=4[enter]
POST /showpost.php?fubar=3 HTTP/1.1[enter]
Host: imod-demo.imodinc.com[enter]
Content-Type: application/x-www-form-urlencoded[enter]
Content-Length: 11[enter]
[enter]
foo=3&bar=4[enter]
HTTP/1.1 200 OK
Date: Thu, 25 Sep 2003 20:11:43 GMT
Server: Apache
X-Powered-By: PHP/4.3.3
Content-length: 6432
Content-Description: PHP Generated Data
Content-Type: image/jpeg
<image data>
..