David G
David G

Reputation: 96835

Is there a site on which I can run PHP code?

I want to run PHP code as a test without using my own webserver. Is there any site that would allow me to do this? Any help would be appreciated.

Upvotes: 0

Views: 170

Answers (4)

RiaD
RiaD

Reputation: 47640

First google result

I think It's better to install php on you local PC

You will able to

  • use functions that are restricted in sandboxes,
  • configure it, as you need,
  • install any extension
  • see result without any stuff of site code

Upvotes: 3

JJ.
JJ.

Reputation: 5475

Another good choice:

http://writecodeonline.com/php/

Upvotes: 0

adlawson
adlawson

Reputation: 6431

Codepad is a good choice. Supports multiple languages, including PHP.

http://codepad.org/

Upvotes: 1

JRL
JRL

Reputation: 78013

IdeOne, Codepad, and probably many others, take your pick. For those two however, PHP 5.2 will have to do.

Upvotes: 0

Related Questions