PHP Classes

File: insert.php

Recommend this page to a friend!
  Classes of omid zarifi   Day Tips Show   insert.php   Download  
File: insert.php
Role: Auxiliary script
Content type: text/plain
Description: insert to db
Class: Day Tips Show
Retrieve the tip of the day from a MySQL database
Author: By
Last change:
Date: 12 years ago
Size: 813 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<form method="post" action="">
<input type="text" name="content" />
<input type="text" name="writer" />
<input type="submit" value="submit"/>
</form>
<?php
//this is not class
//this is just for example for submit a day tip to db
include('config.php');
if (isset(
$_POST['content']))
{
$content=$_POST['content'];
$writer=$_POST['writer'];
$query="INSERT INTO `daytips` (`daytip_contant` ,`daytip_writter`) VALUES ('".$content."', '".$writer."')";
mysql_query($query);
}
?>
</body>
</html>