I have
.txt
file, namely "104.txt", and I save in my hosting like this: http://example.com/files/104.txtI have post with ID Post: 104
If I use this code to show txt
file in my theme, it's fine work:
<?php
echo file_get_contents( "http://example.com/files/104.txt" );
?>
But, If I use Post ID for name file, it don't work:
<?php
$id = get_the_ID();
echo file_get_contents( "http://example.com/files/'.$id.'.txt" );
?>
MY QUESTION:
How to resolve to show txt
file in PHP with ID Post for name file? Thanks