Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
если не пускаться в подробности, то потому что скомипенно под конкретную систему.
а дальше - игра в рулетку, может запустится на другой системе, а может и нет.
ты сам пособирай PHP ручками, тогда всё и поймёшь.
/*
hello.c - CGI program for the web
*/
#include <stdio.h>
int main()
{
printf("content-type: text/html\n\n");
printf("<html>\n<body>\n");
printf("<h1> Hello, World! </h1>\n");
printf("</body>\n</html>\n");
return 0;
}