You definitely want to unserialize your data before you can use it:
<?php
$myData = unserialize($row['services']);
var_dump($myData); // see what's inside
?>
If you are dealing with array there - you probably want to loop over the array to extract the services.
Thanks for the reply. However I've already tried using it in that form. The problem is, because of the way I'm displaying it, it doesn't seem to be working. Basically, I've got it set up like this:
[PHP]<?php
echo "<td>Services:" . $row[services] . "</td>";
?>[/PHP]
So I tried doing something like this:
[PHP]<?php
$mydata = unserialize($row['services']);
echo "<td>Services

mydata</td>";
?>[/PHP]
But to no avail. Still doesn't really work. But I'll try the var_dump to check it out. That's a good idea.
Thanks.