Advertisement
Advertisement
| 05.29.2008 at 05:56PM PDT, ID: 23443395 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: |
<? include("comm/connection.php");?>
<?
$from=$_REQUEST[from];
$email=$_REQUEST[email];
$msg_title=$_REQUEST[msg_title];
$body=$_REQUEST[body];
$date_=date(ymdh);
mysql_query("insert into income_messages_tb(from,email,msg_title,msg_body,date) values ('$from','$email','$msg_title','$body','$date_');");
//echo "<meta http-equiv='refresh' content='0;URL=contact.php?msg=Thanks for yout message' />";
?>
|