hi im trying to insert data in mysql using array, can someone please look at my code, i cant seem to make it work.
this is my post.php
/* POST.PHP */
$p
in
$myarray = array('','$title','$body','$rowId');
code, you cannot use single quotations to read variables values in to string. you must use double quatations for that, because if you use single quotation, it not reading variable value, and php thinks its the value itself,
try
$myarray = array("","$title","$body","$rowId");
this may help you...