single and double quotes.... you're getting all mixed up and confused...
run this script and see for yourself where your problem lies....
Code:
<?php
$array[5] = 'single quote';
$array[6] = 'double quote';
echo 'This is an echo from within a {$array[5]} <br>';
echo "This is an echo from within a {$array[6]} <br>";
?>