get_post_meta returns 0

Change $single back to false, e.g.:

<?php $name_text = get_post_meta( 65, 'name_text' ); ?>

Why?

If set to true then the function will return a single result, as a string. If false, or not set, then the function returns an array of the custom fields. This is not intuitive. For example, if you fetch a serialized array with this method you want $single to be true to actually get an unserialized array back. If you pass in false, or leave it out, you will have an array of one, and the value at index 0 will be the serialized string.

You want to return the array, and then use $name_text[0].