I tried with the 'S" and it still won't print the result
Code:
<?php
include 'dbconnect.php';
$query = "SELECT * FROM messages WHERE id=43";
$result = mysql_query($query);
while($row = mysql_fetch_array($result))
{
$str = $row['message'];
}
print_r (explode(",\"",$str));
print_r (explode("\"",$str));
echo $arrays[3];
echo $arrays[4];
print_r($arrays[5]);
?>