IP*Works! 2016 PHP Edition
IP*Works! 2016 PHP Edition
Questions / Feedback?

AddItem Method

Inserts a new item into the beginning of an RSS feed.

Object Oriented Interface

public function doAddItem($title, $description, $link);

Procedural Interface

ipworks_rss_do_additem($res, $title, $description, $link);

Remarks

This method assumes that the items are new and more important than existing items and thus adds the item to the beginning of the current item list. This method requires the three standard fields Title, Description, and Link to be specified.

Example (Add a New Item)

RSSControl.AddItem("New Item Title", "Item Description", "http://www.itemsource.com")
RSSControl.WriteFile(filename)
Example (Add a New Item using the Item Arrays)
RSSControl.ItemCount = 1
RSSControl.ItemTitle(0) = "New Item Title"
RSSControl.ItemDescription(0) = "Item Description"
RSSControl.ItemLink(0) = "http://www.itemsource.com"
RSSControl.WriteFile(filename)

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 PHP Edition - Version 16.0 [Build 7353]