How to create PHP result script ?

Discussion in 'PHP' started by naruponk, Sep 29, 2013.

  1. #1
    Hi,
    I would like to create a PHP script that allow user to try PHP coding
    online. user can see the result from their code. Can anyone please guide me how to do that
    or where to download the script like that ?

    Thank you
     
    Solved! View solution.
    naruponk, Sep 29, 2013 IP
  2. cossio

    cossio Member

    Messages:
    110
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    33
    #2
    That would be a very dangerous script. You will allow other people to execute code on your server.
     
    cossio, Sep 30, 2013 IP
  3. #3
    Not necessarily dangerous - you could create random db-setup for each user, limit exec() and other executables, and run each instance in a sandbox - but I'm guessing this is all a bit beyond the capabilities of the original poster.
     
    PoPSiCLe, Sep 30, 2013 IP
  4. nickspring

    nickspring Member

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    48
    #4
    I think you can order such script and define your requirements for it
     
    nickspring, Sep 30, 2013 IP
  5. eritrea1

    eritrea1 Active Member

    Messages:
    182
    Likes Received:
    9
    Best Answers:
    2
    Trophy Points:
    70
    #5
    I think you would be taking a lot of risk in allowing users to post whatever to your server.

    If you want to go with the plan however, it is better that you keep two things in mind.

    1 - disable many extentions like curl, splFileObject..
    2 - to protect your data, or others (if you are in a shared hosting) you should have your own specific private server, you can get one from vpscorner for $10 a month, and upload your site there. So, it the server is only hosting one site, then if someone hacks that, you can't endanger yourself or others.

    Finally, I would suggest your learn a little about AJAX, and PHP's eval function to create this script.

    Good luck
     
    eritrea1, Sep 30, 2013 IP
  6. naruponk

    naruponk Active Member

    Messages:
    127
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #6
    Thanks a lot everyone :)
     
    naruponk, Sep 30, 2013 IP