Hello, I need your help DP Friends I need to create a script which can accept the contents post to it via email and able to store that in a DB Permanently and able to display that in a php page The individual email sent to it must display as a single article and also it much able to produce a valid rss feed for that page Can any one help me how to create this Thanks in advance!!!
1. Create a html form so the content can but submitted. 2. Use $_POST to retrieve the content (making sure to validate it). 3. Email the $_POST'd validated content via mail() 4. Do a mysql_query() -> INSERT into to insert the content into the db.... (making sure you've ran mysql_real_escape_string()) 5. Do a while($row = mysql_fetch_array($sql)) loop to displayed the stored content on the page... 6. Find an RSS php class to generate an RSS feed based on step 5's output...