[SOLVED] Help, please! Name of column MySQL to FLEX

Hello!
I want the name of a column in a MySQL database table for my Flex output application. I searched and found the mysql_field_name PHP function.

The NAME of the TABLE is
-stations

The FIELDS in table 'stations' are:
-station_id
-staiton_name

When I run the application now, I get nothing! Try it yourself!
Please, I beg you! Help! I am a beginner Flex/PHP, so if you have any ideas for a solution or a different approach to the resolution of this feature, Post it!

Kind regards
Kenwio

FLEX and PHP code:

OK, this one is solved.

Instead of using the code above, I now use the code below. Works like a charm

Hope this helps someone in the future...
Kenwio

HERE IS THE FLEX AND PHP CODE:

Tags: Flex

Similar Questions

  • Help please with three columns

    Hi all

    I was faced with a presentation of three columns to incorporate images inserted on the right. Please visit http://www.greenpatchwebsites.com/ridgeway/index2.html

    For now I've resorted to a background image, but I'm not satisfied with the quality and lack of positioning in relation to the text.

    I looked at a lot of sites false re / three columns etc. but I cannot get it to work. As you will see in the associated css there are a lot of divs because the area in full expansion and I get a mess.

    An expert here would be very welcome and thank you in advance.

    I was able to, or really get your point:

    Refer to the following image. This is how your page should be:

    • OuterWrapper that contains

      • Header
      • leftBar
      • MiddleBar
      • RightBar
      • Footer

    6 in all div tags will suffice. Make sure that you create these DIVs, as described by the borders. Then put your content accordingly.

    Kind regards

    Vinay

  • How the XML element used in RTF PUBLIC/PRIVATE? I know how to hide columns in RTF, but do not know how to generate xml below way. Help, please.

    Hello

    I'm following link below to show/hide my columns dynamically. See "formatting of column.

    http://docs.Oracle.com/CD/E12844_01/doc/BIP.1013/e12187.PDF

    According to the doc element can be made in private/public.

    <items type="PUBLIC">
     <item>
      <name>Plasma TV</name>
      <quantity>10</quantity>
      <price>4000</price>
     </item>
     <item>
    

    And even can be used to hide the column with the help of State

    <?if@column:/items/@type="PUBLIC"?>
    

    MY QUESTION IS HOW TO DO THIS IN MY XML BELOW?

    Here's the part of my XML code that I use in the definition of the data to RTF.

    <group name="GH3" source="QH3">
    <element name="COLUMN_HEAD3" value="COLUMN_NAME" /> 
    </group>
    <group name="GH4" source="QH4">
    <element name="COLUMN_HEAD4" value="COLUMN_NAME" /> 
    </group>
    

    I'm out like that.

    <LIST_GH3>
    <GH3>
    <COLUMN_HEAD3>REBILL_TO_OTHER_BUSINESS_UNIT</COLUMN_HEAD3>
    </GH3>
    </LIST_GH3>
    <LIST_GH4>
    <GH4>
    <COLUMN_HEAD4>XYZ</COLUMN_HEAD4>
    </GH4>
    </LIST_GH4>
    

    In order to use the logic according to the oracle document I want output like this.

    <LIST_GH3 type="PUBLIC">
    <GH3>
    <COLUMN_HEAD3>REBILL_TO_OTHER_BUSINESS_UNIT</COLUMN_HEAD3>
    </GH3>
    </LIST_GH3>
    <LIST_GH4 type="PRIVATE">
    <GH4>
    <COLUMN_HEAD4>BLANK</COLUMN_HEAD4>
    </GH4>
    </LIST_GH4>
    

    Should what changes I make in my XML to get the result of the execution as above? Help, please. Where should I make changes in the XML above? Name of the Group? Name of the element?

    I intend to use it under condition in RTF model to hide the column, but do not know how to set the column as PRIVATE/PUBLIC type in the XML output that is used to populate the data in the RTF while running.

    <?if@column:/BTSPIEXP/LIST_GH3/@type=”PUBLIC”?>COLUMN_HEAD3<?end if?>
    

    Kind regards

    Patricia K.

    Hello

    Problem has been resolved. I used the value of the item to determine whether to show it.

    Kind regards

    Patricia K.

  • Firefox suddenly stopped from asking me if I want my user name and saved passwords. Help, please!

    Firefox suddenly stopped from asking me if I want my user name and saved passwords. Help, please!

    Make sure that you are not Firefox running in permanent private browsing mode.

    To view the history settings and cookies, choose:

    • Tools > Options > privacy, choose the setting Firefox will: use the custom settings for the story of
    • Uncheck the box: [] "always use the navigation mode private.
  • Since the changed my user name andpassword icoud and apps still insist on using my od username. Help, please

    Since the changed my user name and password, icloud and apps still want to use my old user name and cannot use them to download updates or anything like that. Help, please.

    mini iPad 9.2.1 update

    Log out of your account version (for example on this type in settings > iTunes & App Store;) Settings > iCloud > Sign Out) and back with the version update of your account: what to do when you have changed your Apple ID email address or password - Apple support

  • My iPhone 5 s a problem that the accusation itself decreases without using the phone, I changed the battery it is always the same and I put it in airplane mode it's always the same problem how to solve this help please?

    problem iPhone 5s load is reduced to

    My iPhone 5 s a problem that the accusation itself decreases without using the phone, I changed the battery it is always the same and I put it in airplane mode it's always the same problem how to solve this help please?

    Please help me anyone

  • I try to copy a CD but get an error in the column State of Rip. Has not changed any option, as I just ripped a CD yesterday. HELP PLEASE!

    I have NEED of HELP PLEASE I am trying to copy a CD but get an error in the column State of Rip. Has not changed any option, as I just ripped a CD yesterday.  HELP PLEASE!

    Hello

    1. What is the exact error message?

    2. is the issue specific to this particular CD/DVD?

    3 did you changes to the computer, before the show?

    Method 1:

    Run the Windows Media Player settings troubleshooter.

    Open the troubleshooting Windows Media Player settings Troubleshooter

    Method 2:

    Change the settings for the extraction of music and the audit.

    Change settings for ripping

  • I have the table of 3 columns A, B, C. I want to store the sum of columns A B in the C column without using the DML statements. Can anyone help please how to do. ?

    I have the table of 3 columns A, B, C. I want to store the sum of columns A B in the C column without using the DML statements. Can anyone help please how to do. ?

    11.1 and especially you have virtual column

    SQL> create table t
      2  (
      3     a number
      4   , b number
      5   , c generated always as (a+b) virtual
      6  );
    
    Table created.
    
    SQL> insert into t (a, b) values (1, 2);
    
    1 row created.
    
    SQL> select * from t;
    
             A          B          C
    ---------- ---------- ----------
             1          2          3
    

    Before that, a front insert - trigger

    SQL> create table t
      2  (
      3     a number
      4   , b number
      5   , c number
      6  );
    
    Table created.
    
    SQL> create or replace trigger t_default before insert on t for each row
      2  begin
      3    :new.c := :new.a+:new.b;
      4  end;
      5  /
    
    Trigger created.
    
    SQL> insert into t (a, b) values (1, 2);
    
    1 row created.
    
    SQL> select * from t;
    
             A          B          C
    ---------- ---------- ----------
             1          2          3
    
  • My Dreamweaver 8 loses the name/password FTP every time it is turned off. Any help please?

    My Dreamweaver 8 loses the name/password FTP every time it is turned off. Any help please?

    It was a known problem in DW 8.0. Update to version 8.0.2.

    See Dreamweaver 8 for Windows loses FTP login settings

  • Help please I'm trying to set up my microsoft exchange e-mail account, but it requires a password for my internet service provider. I don't have one. How can I solve this problem?

    Where do you find a password for the internet service provider? First of all, I never heard of him, what is it?  When they hung my internet, nothing has been said to need a password. Help, please?

    Hi Sherry,

    Contact the technical assistance service from your ISP for help with your account – including the password (which, although I suppose that it is possible (if intentionally the value no password which is incredibly dangerous if they would even which allowed), is incredibly little likely, there isn't - although the installation program can do such that the need to seize every time has been bypassed and this way you apparently).

    If this isn't a problem with your ISP or ISP password, then it probably has something to do with the Exchange Server Setup program.  I'm not sure what exactly that you try to configure - an Exchange Server account, or an account customer to remote Exchange, hosting of your email server.  If the question relates to Exchange Server, please see the forum for assistance: http://social.technet.microsoft.com/Forums/en-US/category/exchangeserver.

    But the first place to start is your ISP because no matter the issues by e-mail, you need to know or may need to know your password.

    Good luck!

    Kosh

  • I get an error: Ox80070424 when I try to change my firewall settings... I don't know how to solve this problem... help please.

    Im trying to let allow sharing of zune media allowed on windows firewall... However, when I click on it says: error: Ox80070424 cannot change settings... so I have no idea on where to start to fix this type of problem help please.

    Hello

    Did you change your computer?

    Method 1:

    I suggest you run the fixit tool and check.

    Diagnose and automatically fix problems of Windows Firewall service

    http://support.Microsoft.com/mats/windows_firewall_diagnostic/

    Method 2

    I also suggest you to follow the link and check.

    Error code: 0x8007042c 'firewall Windows cannot change some of your settings' when you try to activate your Windows Firewall

    http://support.Microsoft.com/kb/2530126

    Method 3:

    I also suggest you perform the clean boot and check.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    See also:

    Understanding Windows Firewall settings

    http://Windows.Microsoft.com/en-us/Windows7/Understanding-Windows-Firewall-settings

  • I can't see the pictures in my yahoo email, I did not have this problem with other browsers. I used the safe mode and still no success. Help, please.

    Question
    I can't see the pictures in my yahoo email, I did not have this problem with other browsers. I used the mode 5 firefox safe and always without success. Help, please

    To help other users find solutions, please come back to this Thread and connect you to the
    Forum with your user name and password:

    Click on 'resolved' beside the answer above that BETTER resolved your issue

    DO NOT CLICK on 'Solved It' next to this answer

  • Hello. I buy the Macbook Air Mid 2015... After the upgrade to El Cap internet speed slowed painfully. What should do? Help, please

    Hello. I buy the Macbook Air Mid 2015... After the upgrade to El Cap internet speed slowed painfully. What should do? Help, please

    When you see a beachball cursor or the slowness is particularly bad, note the exact time: hour, minute, second.

    These must be run as administrator. If you have only one user account, you are the administrator.

    Run the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    The title of the Console window should be all Messages. If it isn't, select

    SYSTEM LOG QUERIES ▹ all Messages

    in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu at the top of the screen bar.

    Each message in the journal begins with the date and time when it was entered. Highlight date back to the time you noted above.

    Select the messages entered since then until the end of the episode, or until they begin to repeat, whichever comes first.

    Copy messages to the Clipboard by pressing Control-C key combination. Paste into a reply to this message by pressing command + V.

    The journal contains a large amount of information, almost all this is useless to solve any particular problem. When you post a journal excerpt, be selective. A few dozen lines are almost always more than enough.

    Please don't dump blindly thousands of lines in the journal in this discussion.

    Please do not post screenshots of log messages - text poster.

    Some private information, such as your name, may appear in the log. Anonymize before posting.

    When you post the journal excerpt, an error message may appear on the web page: "you include content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

  • No sound. Help, please!

    Qwest arrived and installed their security software, but now I have no sound.  I tried to uninstall and reinstall the driver, but it does not work.  Everything is properly connected.  The computer will play the start/stop windows songs, but it's the only sounds I get.  I have Windows XP Home Edition on a Dell desktop computer.  I called Dell and they said that it is a Microsoft driver.  I went to Microsofts driver download page, but mine is not listed.  I thought I could buy a new sound card, but Dell said my sound card is integrated and there is no slot for moving to a new.  What is missing is a midi mixer driver.  I did write the exact name, because I thought that the uninstall/reinstall would work as he had in the past.  Now, he just disappeared.  Help, please!  Thank you.

    What do you use to play these sounds - Windows Media Player, games, etc.

    Why do you think the midi mixer driver is missing?

    If you see an error message, exactly what he says?

    What security software Qwest did install?  They have a lot of security software.

    What Qwest did say when you told them that once they came and their installed security software you have discovered the sound on your system has been afflicted?

    Is your Dell system still under the factory warranty?  Call me later and I'll give you some tips for working with people for their support.

    It is usually best to get the drivers from the manufacturer of your system/motherboard and not from Microsoft, so we need to see what you have right now.

    Maybe someday the dialog box 'ask a question' forums XP will ask these questions automatically when a new thread is started so I don't have to ask every time.  It might even be possible to solve a problem in a single response when enough information is provided.

    Please provide additional information on your system:

    What is your system brand and model?

    What is your Version of XP and the Service Pack?

    Describe your current antivirus and software anti malware situation: McAfee, Symantec, Norton, Spybot, AVG, Avira!, MSE, Panda, Trend Micro, CA, Defender, ZoneAlarm, PC Tools, Comodo, etc..

    The question was preceded by a loss of power, aborted reboot or abnormal termination?  (this includes the plug pulling, buttons power, remove the battery, etc.)

    The afflicted system has a CD/DVD drive work?

    You have a true bootable XP installation CD (it is not the same as any recovery CD provided with your system)?

    What you see you don't think you need to see?

    What do not you think that you should see?

    Now to provide information about your motherboard and system device:

    Click Start, run and enter in the box:

    Msinfo32

    Click on OK and when the system info summary appears, click on Edition, select all, copy, and then paste the information here.

    For information about the audio drivers, expand components, click Sound Device, click on edit, select all, copy and then paste the information here.

    There will be some personal information (such as the user name and the name of the system), and anything that turns information private for you, simply delete the pasted information.

    Do, or do not. There is no test.

    I decided to implement the points for a new puppy instead of a pony!

  • HP PC HDMI-&gt; Sony Bravia HDMI = no display! Help, please!

    Hello

    I'm usually well informed about the connections for digital devices, but I'm completely baffled by this situation and would REALLY appreciate your response as soon as possible, thanks in advance!

    Problems - the following statement of what I've done:

    I bought HDMI - HDMI Cable to connect my model of PC HP A6355 Phenom 9500 Quad Core (which have a HDMI port) for Sony Bravia LCD HDTV (which of course also have Port HDMI!)

    I turned off TV and PC, then connect the HDMI cable to the two end to each device

    Turn on the PC and the TV

    I checked every singal channel AV and PC on TV - no connection regonised

    I checked my display settings and set it to lower the resolution and trying to replicate the monitor (still doesn't)

    Have no FN key on my keyboard

    I took off the cable from the PC and connect it to my HP laptop and it worked perfectly fine! (this is the part where it puzzle me most!) one thing I notice is when I connect the cable from the laptop on tv - display automatically to survey and ready for me set the appropriate resolution setting - he didn't do it on my desktop PC...

    Why?

    My HP PC is 32 bit operating system

    NIVIDA GeForce 8500 GT

    I also checked Device Manager to see if my HDMI port works on my PC, but there is no option to select HDMI (unless they have another name for it IE bus usb etc?)

    Help, please! Thanks again

    Hey there,

    I just want to say that I have now solved the problem...

    Apparently my Nivida GeForce driver is not updated, make sure that you update your regularly and you will have no problem!...

    A smile and a big smile on my face seeing now works!...

    Thank you even if no one answers, it seems content to my brain so that it works properly!

    Thanks again

Maybe you are looking for