| Tip of The Day - Use data from other sites in yours |
The Portal command lets you easily load data from another web site.
Format:
remotehtmlurlload([Url],[Refresh Every X Days]);
Code Example:
set $Source=remotehtmlurlload("http://wordsmith.org/words/",1); set $Word=$Source.GetStringAfterFirstOccuranceOf("A.Word.A.Day--") .GetStringAfterFirstOccuranceOf("A.Word.A.Day--") .GetStringBeforeFirstOccuranceOf("<").Trim();
"The word for today:";$Word;<br> "From wordsmith.org";
|