I'm in need for a basic app just to teach me how to do it myself,
I'm looking to pay for the source code of a basic app that will do the following;
What the app needs to do/look like:
It must have some sort of search function within the app,
What I need it to do is once I search for a word then it needs to grab from a website the data within a div class such as this:
This is if records of the item searched for is not found:
Quote:
<div class="tableRow">
<span class="nameColumn">
<span>Data 1</span>
</span>
<span class="ItemValueLeftColumn notFoundColumn">
<span>Not Found</span>
</span>
<span class="ItemValueRightColumn"></span>
</div>
|
This is if records of them item searched for is found:
Quote:
<div class="tableRow">
<span class="nameColumn">
<span>Year</span>
</span>
<span class="Column1">
<span>Data 1</span>
</span>
</span>
|
What it needed is the app to, when searched for an item, to go to a website and grab this data from each div class and then put it in order on the app in the screen shot like above, so it would look something like this:
I search for Mars
The website has this data:
Quote:
<div class="tableRow">
<span class="nameColumn">
<span>Distance</span>
</span>
<span class="Column1">
<span>5</span>
</span>
</span>
<div class="tableRow">
<span class="nameColumn">
<span>Year</span>
</span>
<span class="Column1">
<span>13</span>
</span>
</span>
<div class="tableRow">
<span class="nameColumn">
<span>Month</span>
</span>
<span class="ItemValueLeftColumn notFoundColumn">
<span>Not Found</span>
</span>
<span class="ItemValueRightColumn">
|
The app will return looking like:
____________
Distance: 5
____________
Year: 13
____________
Month: Not Found
____________
Please PM me or post here with any questions!