11 lines
146 B
PHP
Executable File
11 lines
146 B
PHP
Executable File
#! /usr/bin/php
|
|
|
|
<?php
|
|
|
|
if(isset($_FILE["fileToUpload"]))
|
|
echo "there is a file";
|
|
else
|
|
echo "\n\nHeader: something\r\n\r\nno file\r\n";
|
|
|
|
?>
|