Is the RSS feed data on my site that I received from other sites searchable by the Google search system or not? I did not define a database, it is only displayed by the PHP code.
I want to know if only using the following code is enough to display the content of the RSS feed and if there is no need for a database, will the content be searched by Google and other search engines with the following code?
<?php$rss_feed = simplexml_load_file("https://phppot.com/feed/");if (! empty($rss_feed)) { $i = 0; foreach ($rss_feed->channel->item as $feed_item) { if ($i >= 10) break; ?><div><a class="feed_title" href="<?php echo $feed_item->link; ?>"><?php echo $feed_item->title; ?></a></div><div><?php echo implode('', array_slice(explode('', $feed_item->description), 0, 14)) . "..."; ?></div><?php $i ++; }}?>