943,640 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 361
  • PHP RSS
Aug 22nd, 2009
0

Database results from one site to another

Expand Post »
Looking at the source code of this website:


http://superdialcouk.dmshop.biz/numb...9-14_8068_0003



What code do i copy and paste to get that table of telephone numbers on my website, the numbers need to remain dynamic in thesense tat if theyre purchased from the site given above - they then should not be viewable on my site.
Similar Threads
Reputation Points: 10
Solved Threads: 0
Light Poster
caps_lock is offline Offline
43 posts
since Nov 2008
Aug 22nd, 2009
0

Re: Database results from one site to another

Reputation Points: 18
Solved Threads: 2
Junior Poster
Dsiembab is offline Offline
156 posts
since Mar 2007
Aug 24th, 2009
1

Re: Database results from one site to another

Well to retrieve the entire page use file_get_contents() then preg_match_all() to filter to that table. Below is an example
php Syntax (Toggle Plain Text)
  1. <?
  2. $var=file_get_contents('http://superdialcouk.dmshop.biz/numbers/0207/choose.php?dmb1_SessRef=2009-08-22_15-29-14_8068_0003');
  3. $var=preg_match_all('/<table class="vert_centered_leaded" style="width: 100%;".*<tr>.*<tr>.*<\/tr>(.*<\/table>)/Us',$var,$array);
  4. //print_r($array);
  5. $var='<table class="vert_centered_leaded" style="width: 100%;">'.$array[1][0];
  6. unset($array);
  7. echo $var;
  8. ?>
Usually I only use curl if it involves pinging or posting to a server.
Last edited by cwarn23; Aug 24th, 2009 at 4:31 am. Reason: code tag syntax
Sponsor
Featured Poster
Reputation Points: 410
Solved Threads: 258
Occupation: Genius
cwarn23 is offline Offline
3,004 posts
since Sep 2007
Aug 24th, 2009
1

Re: Database results from one site to another

fopen
Quote ...
If PHP has decided that filename specifies a registered protocol, and that protocol is registered as a network URL, PHP will check to make sure that allow_url_fopen is enabled. If it is switched off, PHP will emit a warning and the fopen call will fail.
Also if someone gets wary of the ip address that the request is being made from your server ip could get blacklisted. with curl you can change the headers being sent to mirror googlebot or what not. Then none would be the wiser.
Reputation Points: 18
Solved Threads: 2
Junior Poster
Dsiembab is offline Offline
156 posts
since Mar 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: Cache-Control help
Next Thread in PHP Forum Timeline: Isnt displaying database results





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC