Не добавляет вообще ни каких данных, мне нужно чтобы добавилось urlsite,text,ip
<?
$secret_key = '';
$post_str = $_POST['notification_type'] . '&'. $_POST['operation_id']. '&' . $_POST['amount'] . '&643&' . $_POST['datetime'] . '&'. $_POST['sender'] . '&' . $_POST['codepro'] . '&' . $secret_key. '&' . $_POST['need-email'] ;
$sha1 = sha1( $post_str );
if( $sha1 != $_POST['sha1_hash'] )
{
exit;
}
include "admin/config/config.php";
$dbc = mysqli_connect();
$text = $_POST['need-email'] ;
$sql = "INSERT INTO adv_ceplink_req (urlsite,text,ip,date,begindate) VALUES ('$urlsite','$text','$ip','$date','$begindate')";
mysqli_query($dbc,$sql);
?>