RSS Reader - Frequently Asked Questions

Can I use your script rsslib.php, which is under MPL 1.1, while I'm "company"?

The Mozilla license allows RSSLIB to be used as part of another scenario, even for commercial use. It is necessary to save the license mention in the script and make available the source code, even modified.
View license: https://www.mozilla.org/en-US/MPL/1.1/

Is it okay to use rsslib.php, which I set up, as the background of my gadget for Facebook and other social platforms Web2.0?

Same answer. I would appreciate if you could post a link to the original script on your website.

Is there a way to limit the number of characters or words in the description and put... "" at the end of the description when shortening it?

In RSS_Tags after:

$description = $tnl->firstChild->textContent;
You can add:
$description = substr($description, 0, 150)."...";
Replace 150 with the number of characters you want.

How to limit the number of news in the channel shown?

The size of the stream is one of the parameters of the RSS_Display function.
The number of links displayed is indicated when the function is called, for example, 3 to display three links.: echo RSS_Display ($ url, 3);

Is it possible to show news on a new page?

You can specify how to open the page. In the RSS_Display or RSS_links function, replace :
$page .= "<li><a href=\"$link\">$title</a>";
by:
$page .= "<li><a href=\"$link\" target=\"_blank\">$title</a>";
and you can choose any other mode such as _ parent, _ top,...