PasteSite is open to the public, but with limited features. Register to be able to modify access rights, track your pastes and more...
If you prefer reading light text on a dark background to dark text on a light background, then you might want to try the dark theme.
"MMS Image Upload" by IamShipon1988 [PHP]Actions: |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# # MMS2WEB.COM EMBEDDED MMS GALLERY PHP SCRIPT V1.0 # # ENTER YOUR USERNAME HERE $username="MY USERNAME HERE"; $offset=$_GET['os']; # $page is the path for this page $page=basename($_SERVER['PHP_SELF']); $url="http://host.mms2web.com/mms.php?domain=$username&os=$offset&page=$page"; $ch=curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); $xml = curl_exec ($ch); curl_close ($ch); echo $xml; |