Nasıl okunabilir bir dizi olarak bir sayfaya POST üzerinden gönderilen tüm bilgiler Thats alarak ve bir db içinde saklayarak hakkında gitmek istiyorum
Şu anda ben bu işlevi vardır:
$mysql = mysql_query("INSERT INTO `table` (`sid`, `contents`) VALUES ('$sid', '$contents')") or die(mysql_error());
if($mysql){
return TRUE;
}else{
return FALSE;
}
when i pass $_POST for $contents, all i get in the db is Array
I need some way of reading the post values, converting them to something readable, storing them, and then being able to get them back out and loop through the info again