File: test.php

package info (click to toggle)
vim-rainbow 3.3.1.88.g76ca1a2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: sh: 43; ruby: 13; ansic: 9; perl: 8; php: 8; xml: 5; javascript: 3; makefile: 2; haskell: 2
file content (13 lines) | stat: -rw-r--r-- 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
if ($_FILES["file"]["error"] > 0)
  {
    echo "Error: " . $_FILES["file"]["error"] . "<br />";
  }
else
  {
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
  }
?>
<html>
hello (world)
</html>