Status
Not open for further replies.

duonglg

Active Member
159
2010
2
0
Dear all!

I have a website platform WP, i want put a textbox, a button on my post website. When user input link Uploaded, Rapidgator to textbox and then click button, this textbox return a direct link of previous link download UPloaded, Rapidgator.

Please help me, thanks in advanced.
 
Last edited:
4 comments
They will ban your server IP or your account soon.
Btw, did you test it yourself, get direct link from an IP and use it on other IP?
 
@supick: Yes, Get direct link from an ip and use it on other ip, limit about 20 user.
Have you ideas for this?

I don't have UL or RG Premium account to test, but it should be very easy with PHP. No one will help you write a code from A to Z, you have to handle it yourself
With Uploaded, it will be something like this:

Code:
$re = '/url:\'([^\']+uploaded.net[^\']+)\'/';
preg_match($re, $page, $match); // $page is html source code of your link
echo $match[1];
 
Status
Not open for further replies.
Back
Top