# Making a PHP News Reader

**URL:** https://forum.kirupa.com/t/making-a-php-news-reader/231537
**Category:** flash
**Created:** [July 5, 2007, 3:45pm UTC](https://forum.kirupa.com/t/making-a-php-news-reader/231537 "2007-07-05T15:45:42Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![samuelr27921](https://avatars.discourse-cdn.com/v4/letter/s/f475e1/32.png) [@samuelr27921](https://forum.kirupa.com/u/samuelr27921)
#### Post date: [July 5, 2007, 3:45pm UTC](https://forum.kirupa.com/t/making-a-php-news-reader/231537/1 "2007-07-05T15:45:42Z")

</div>

Hello, How can I make Flash Read a PHP News Like [http://www.raven-symone.org/updates/show\_news.php](http://www.raven-symone.org/updates/show_news.php) .

lntxt is my text area

I came up with this code but its not working  
myData = new LoadVars();  
myData.onLoad = function() {  
lntxt.text = this;  
};  
myData.loadVariables(“[http://www.raven-symone.org/updates/show\_news.php](http://www.raven-symone.org/updates/show_news.php)”);  
myData.load = function(success) {  
if (mydata.load) {  
trace(“text loaded”);  
} else {  
trace(“text failed loading”);  
}  
};
