Y
Hacker News
new
|
ask
|
show
|
jobs
by
prodikl
3266 days ago
am i not getting this? i typed echo "hello"; for PHP and the output says "echo 'hello';"
it just repeated back what i typed instead of processing the code hmm
1 comments
robbles
3266 days ago
it works exactly like the real PHP interpreter:
<?php echo "hello"; ?>
link