Jump to content

Parsa

Members
  • Posts

    35
  • Joined

  • Last visited

Posts posted by Parsa

  1. I know this may sound rather bizarre and I have made a thread about this before, but could you please delete this forum account.

    I accsidentally used my real name as my forum username and would like to see this account removed for personal privacy reasons.

     

    It may sound strange, but I have asked multipule times for this to happen, but to no avail.

    I have been a regular and loyal tip.it user mainly because of its large, freindly and outspoken community; as you can see this account was made many years ago.

     

    Thank you for your time :grin:

  2. I was wondering if it was possible for you to change my forum username.

    If this is not possible please delete my account.

    Thanks a lot for your time.

    simply make a new one.

    Please delete my account, i do not want to be found through my real name on this forum.

    Why use your real name for anything on the internet? -.-

    I realise my mistake, now if it isn't too much to ask please delete my account.

    I do not want to be rude but this action is very important to me.

  3. I was wondering if it was possible for you to change my forum username.

    If this is not possible please delete my account.

    Thanks a lot for your time.

    simply make a new one.

    Please delete my account, i do not want to be found through my real name on this forum.

  4. Price manipulation is only wrong because of the runescape trade limit which doesnt allow people to trade for the price they want, but the manipulated price.

     

     

     

    Otherwise i really cannot understand why its wrong, if somebody can outsmart the rest then he should do it. If somebody is too stupid to check prices and graphs on grand exchange db then he deserves to be ripped off.

  5. You had a silly mistake in your code, thought I would clean that up. :thumbsup:

     

     

     

    <?php
    
    $curlh = curl_init();
    
    
    
    curl_setopt($curlh, CURLOPT_URL, 'http://itemdb-rs.runescape.com/viewitem.ws?obj=' . $_GET['id']);
    
    curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
    
    
    
    $src = curl_exec($curlh);
    
    
    
    curl_close($curlh);
    
    
    
    $item = array();
    
    
    
    ereg('Minimum price: ([0-9\.km,]+)', $src, $item['min']);
    
    ereg('Market price: ([0-9\.km,]+)', $src, $item['mark']);
    
    ereg('Maximum price: ([0-9\.km,]+)', $src, $item['max']);
    
    
    
    
    
    echo '
    
    Minumim: ' . $item['min'][1] . '
    
    
    Market: ' . $item['mark'][1] . '
    
    
    Maximum: ' . $item['max'][1] . '
    ';
    
    ?>

     

     

     

    EDIT: Thank you very much for your help.

  6. Been puzzling over this for a while now, i have managed to connect to the hiscores using PHP cURL functions but i cant quite do the same to g.e.

     

     

     

    PS although i managed to connect to hiscores using cURL i am really bad at cURL and need much more practise.

     

     

     

    The piece of information i am looking for in the source code:

     

    
    Current market price range:
    
    
    
    
    Minimum price: 3
    
    
    
    
    
    Market price: 4
    
    
    
    
    
    Maximum price: 5
    
    
    
    

     

     

     

    Taken from the page: http://itemdb-rs.runescape.com/viewitem.ws?obj=9004

     

     

     

    Not quite sure how to go about getting that data and turning it into a variable.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.