Dealers
You can find our dealers here.
Technical Support

International
|
ShippingExplorer East Ltd.
Stroiteley Str. 85a
87525 Mariupol
Ukraine |
+380 (96) 242-36-80
+380 (629) 49-13-31
+380 (68) 68-51-551
+380 (629) 560-766 |


|
115462958
smolyanova_irina
58180831
smolyanov
|
$link = mysql_connect("localhost", "seamap_user", "gfhjkm") or die("Could not connect");
mysql_select_db("seamap_base") or die("Could not select database");
if ( isset ($_REQUEST['act']) ) {
if (($_REQUEST['name']!='')and($_REQUEST['firm']!='')and($_REQUEST['email']!='')and($_REQUEST['phone']!='')){
$query = "insert into list values ('', '".$_REQUEST['email']."', '".$_REQUEST['name']."', '".$_REQUEST['firm']."', NOW(), '".$_SERVER["REMOTE_ADDR"]."','".$_REQUEST['city']."', '".$_REQUEST['country']."', '".$_REQUEST['phone']."','".$_REQUEST['fax']."','".$_REQUEST['www']."','".$_REQUEST['descr']."')";
mysql_query($query) or die("$query");
print "You are successfully added in dispatch";
}
else print "Error! Obligatory fields are filled not all!";
}
else{
?>
* - fields obligatory for filling
}
mysql_close($link);
?>
|