Hi I am using sim800l and arduino to send data to my database using get request. the connectoin to the webpage works properly i got the response and everyting works well but no data is uploaded to my database, when i past the link to the navigator the data uploaded on the database but when using arduino it won't
this is my php code
<?php
include_once 'dbase.php';
$currentdate = date ("Y-m-d h:i:sa");
$sql = "INSERT INTO posts(temerature,humidity,date)
value('".$_GET['temperature']."','".$_GET['humidity']."','$currentdate');";
mysqli_query($con,$sql);
?>
and i used the fellowing at command
AT+SAPBR=3,1,"CONTYPE","GPRS"
AT+SAPBR=3,1,"APN","internet"
AT+SAPBR=1,1
AT+HTTPINIT
AT+HTTPPARA="CID",1
AT+HTTPPARA="URL","http://website.com/include/upload_data.php?temperature=111&humidity=12"
AT+HTTPACTION=0
AT+HTTPREAD
AT+HTTPTERM
what's wrong? any mistaks i made ? thanks in advance