
Welcome Guest
|
#1
|
||||
|
||||
|
Returning data error
Hi guys,
Well i decided to by a new book: FOED Object Oriented Actionscript 3 So far good read :> Ok my problem I am trying to connect to one of my exsisiting database's and display the data in flex. I ran my php script and it returns the relevant data PHP Code:
Quote:
Flex code: Code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" layout="absolute" creationComplete="newsRequest.send()">
<mx:HTTPService id="newsRequest" url="http://www.domain.com/flex_news_archive.php" useProxy="false" method="POST">
<mx:request xmlns="">
</mx:request>
</mx:HTTPService>
<mx:TitleWindow x="0" y="0" width="891" height="210" layout="absolute" borderColor="#808080" title="Innovative designs news archive" borderStyle="inset">
<mx:DataGrid id="dgNewsRequest" x="0" y="1" dataProvider="{newsRequest.lastResult.newsArchive.news}" width="857" height="160">
<mx:columns>
<mx:DataGridColumn headerText="news ID" dataField="newsID"/>
<mx:DataGridColumn headerText="Title" dataField="newsTitle"/>
<mx:DataGridColumn headerText="Description" dataField="newsDesc"/>
<mx:DataGridColumn headerText="Submitted" dataField="newsDate"/>
<mx:DataGridColumn headerText="Comments" dataField="newsComms"/>
<mx:DataGridColumn headerText="Views" dataField="newsHits"/>
</mx:columns>
</mx:DataGrid>
</mx:TitleWindow>
</mx:Application>Thanks Paul
__________________
.:To me AS is like LEGO, Only for the big Kids :. - Site - Blog - Glasgow Flasher - Activeden - bringmadeleinehome.com |
«
Previous Thread
|
Next Thread
»
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problem returning data from PHP to Flash | dreamy129 | Server Side | 1 | 11-29-2009 03:15 AM |
| error 1120, error 1061, cs4 as3 | designer09 | Flash CS4 |
2 | 11-10-2009 08:40 PM |
| Display Data Grid through .AS File & load user data | chosen | Actionscript 2.0 |
0 | 10-21-2009 09:52 AM |
| error adding List component | iggyKoopa | Flash CS4 |
0 | 01-05-2009 11:27 AM |
| Send File and Data at the same time? | camilian | Flash 8 |
0 | 12-31-2005 10:47 PM |






