File: index.php

package info (click to toggle)
uwsgi-plugin-php 0.0.15
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 84 kB
  • sloc: sh: 65; makefile: 20; php: 5
file content (9 lines) | stat: -rw-r--r-- 124 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
<?php

if (!session_start()) {
    echo "PHP sessions could not be initialized.";
} else {
    echo "Hello World!\n";
}

?>