PHP doesn't parse the variables enclosed inside singles quotes, but it does for the double quotes. Is there any specific reason to interchange the quotes? Why don't you just use
PHP Code:
echo $content['size'];
or
PHP Code:
echo $content["size"];
__________________
Quote:
The Dream is not what you see in sleep; Dream is the thing which doesn't let you sleep. --(Dr. APJ. Abdul Kalam)
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value.
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value.
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value.