Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9148209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:12:44+00:00 2026-06-17T11:12:44+00:00

I have an iOS app that downloads HTML from web (that is not mine)

  • 0

I have an iOS app that downloads HTML from web (that is not mine) and parses it to obtain the data I need. The problem is that when they change the HTML of the web the mobile app crashed, and I’ve to change the code, and Apple stay more than one week to accept the update.
The idea is to to all the operations that now I do in the mobile app in a server or web, like have to act like a bridge, i.e., this server/web would download the HTML web, parse it and send the results to the mobile app. In this form I can do any change instantaneously.

My question is if I can do this without doing an application that needs servlets and a Tomcat server. Can I do it with a php file or something like that? I don’t need need to save any data, only parse a HTML and return to the mobile a response with a specified format.

Thanks for all.

PD: Sorry for my english, but it’s not my native language.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T11:12:45+00:00Added an answer on June 17, 2026 at 11:12 am

    Yes, you can do that with PHP. BUT only when your web space is configured correct, very cheap and free providers often disable outgoing connections from your server.


    In PHP you can make a HTTP GET request with just a single line:

    $htmlContent = file_get_contents("http://www.example.com/file.html");
    

    If you need ability to get more information about the result of your HTTP GET request (like headers) you can still do this very easily by using http_get():

    $htmlContent = http_get("http://www.example.com/file.html", array("timeout"=>10), $info);
    print_r($info); // <- $info now contains information about header fields
    

    For more advanced GET/POST requests, you can install the CURL library:

    $ch = curl_init("http://www.example.com/file.html");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    $htmlContent = curl_exec($ch);
    curl_close($ch);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an iOS app that pulls user data down from a web service
I am creating an iOS app that consumes web services. I have a class
I am working on an app that downloads images from a web site for
I have an iOS app that uses a number of enums for valid values,
I have an old iOS app that I never distributed and am now trying
I have a Rails app that has 2 clients -- an iOS app reads/writes
I'm doing an iOS app that crawl my youtube subscription's videos. I have a
I have an iOS app with a UITableView that has flexible width, which allow
In my iOS app I have several UIElement s that can process user input:
I have an app on my iPhone that was built on iOS 5 and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.