Hi Guys,

Im working on a application that will read content in a certain format from a custom php page that will echo out SQL Info. The PHP Page will echo in the following format;

FlightID=UAL001;
DEPICAO=KMCI;
ARRICAO=KLAX;
Route=WLDCAT1-ART-Loop4;
Comments=Enjoy;

And in my visual basic application, I have the following Text Box's

Flight ID
Departure ICAO
Arrival ICAO
Route
Comments

When the user presses the button "Load Flight", I want the info from FlightID to go in Flight ID, The info in DEPICAO to go in Departure ICAO, And so on. Can someone provide me the easiest way to do this? Thanks a bunch!