Hello,
I need help PLEASE!
I'm posting an array in this format from Android OS:
[date1=1999-04-22, date2=2000-09-11, keyword=["whatever","testing"]]
I can get the date1 and date2 value in php with this:
$data1 = $_POST['date1'];
$data2 = $_POST['date2'];
How can I get the list of keywords to an array lets say keywords[]
Can someone please help me with this? I've been on and on with this... I've tried to put it on a JSON String format then decoding to Array.. I don't know how else I can use it... posterior I implode the Array to perform a query so I need it to be in a variable like $keyword and be an array
HELP PLEASE 🙁