Results 1 to 3 of 3
-
26th Jan 2012, 08:24 PM #1OPMember
how to use dump links
hi i am trying to build a adult website.
my affiliate is giving me the data in this format....
{url}|{description}|{model_name}|{image_url}|{date _added}
and the out put is like this
http://the-link-to-the-page|the-title|the-thumbnail|date-and-time|
can you please help me out with a way to use this kind of dump data on a php language. i am a complete newbie in this!matrix4495 Reviewed by matrix4495 on . how to use dump links hi i am trying to build a adult website. my affiliate is giving me the data in this format.... {url}|{description}|{model_name}|{image_url}|{date_added} and the out put is like this http://the-link-to-the-page|the-title|the-thumbnail|date-and-time| can you please help me out with a way to use this kind of dump data on a php language. i am a complete newbie in this! :facepalm: Rating: 5
-
27th Jan 2012, 03:15 PM #2Respected Member
It would depend on how you wanted to use it. And how many are they passing to you and how are you getting them? A file an xml or ????
But say for a file one input per line you one you could do something like this.
PHP Code:<?php
$infile = fopen('indata.txt','r');
$ctr = 0;
// to retrieve snd store file in an array
while (!feof($infile)) { $datain = fgets($infile,4096); $dataArray[$ctr] = explode('|',$datain); $ctr++; }
// to retrieve data from array
foreach ($dataArray as $dataout) { echo "<br>url: ".$dataout[0]." ** model name: ".$dataout[1]." ** image url: ".$dataout[2]." ** date added: ".$dataout[3]; }
?>
-
27th Jan 2012, 03:17 PM #3OPMember
the links are in clear text.... u can say a txt file....
and there are more than 100 links....
how to repeat this process for every line???
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
LE with HD-Dump.org (PR1+)
By woja in forum Link ExchangeReplies: 20Last Post: 24th Jan 2011, 11:26 AM -
TV-Dump.org
By magca in forum Site ReviewsReplies: 21Last Post: 26th Aug 2010, 01:14 PM -
HD-Dump.org V3
By woja in forum Site ReviewsReplies: 3Last Post: 10th May 2010, 03:52 PM -
LE with HD-Dump
By woja in forum Traffic Market (Buy, Sell and Trade)Replies: 10Last Post: 17th Mar 2010, 10:17 PM -
VIP Dump
By lig}{tning in forum Forum and DDL DiscussionReplies: 9Last Post: 11th Sep 2009, 04:47 PM
themaCreator - create posts from...
Version 3.47 released. Open older version (or...