class= " lineNumbers "
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
|
class=
> " class= " id= " codeSnippet807818
php
включите «. /. /dbdbdbdbdbdb.inc»;
$uploadDir = «. /My_ART/»;
если (isset, то ($_POST [«upload»]))
{
$fileName = $_FILES [«userfile»] [«имя»];
$tmpName = $_FILES [«userfile»] [«tmp_name»];
$fileSize = $_FILES [«userfile»] [«размер»];
$fileType = $_FILES [«userfile»] [«тип»];
$filePath = $uploadDir. $fileName;
$result = move_uploaded_file ($tmpName, $filePath);
если (! $result) {
отголосок «архив ошибки uploading»;
выход;
}
если (! get_magic_quotes_gpc ())
{
$fileName = addslashes ($fileName);
$filePath = addslashes ($filePath);
}
$query = «ВСТАВКА В MyTable ГДЕ электронная почта = ' uuuu@yyyyyy.com' И пароль = ' xxxx (имя, размер, тип, курс)»;
«ОЦЕНИВАЕТ ("$fileName», «$fileSize», «$fileType», «$filePath ")»;
mysql_query ($query) или умирает («color=RED>Error Files»;
}
? >
|