why can't i get any output with this php syntax? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

why can't i get any output with this php syntax?

<html>     <head>         <title>My First PHP Page</title>     </head>     <body>     <?php           echo "Hello World!";     ?>     </body> </html> i just created the html file using trebedit on my phone, is there any requirement am missing to run php on my phone, i code using my phone

15th Jan 2023, 7:39 AM
Dylan Katamba
1 Answer
+ 5
Trebedit is just a text editor. It cannot run your PHP program. You would have to run a web server and a php interpreter on your phone to properly execute the code. Maybe there are such apps but I am not familiar with them. I recommend to develop php on a PC, or you can use Sololearn code playground for simple stuff (but it only works online).
15th Jan 2023, 8:06 AM
Tibor Santa
Tibor Santa - avatar