sun's longitude:47 35 50 
¡¤ ÀÚÀ¯°Ô½ÃÆÇ ¡¤ ¹¯°í´äÇϱ⠡¤ ¾ËÆĹ®¼­ ¡¤ RPMS list
¡¤ »ç¿ëÀÚ¹®¼­ ¡¤ ÆÁ/FAQ¸ðÀ½ ¡¤ ¸®´ª½ºLinks ¡¤ ÀÚ·á½Ç
¡¤ ¼­¹öÁ¤º¸ ¡¤ ¿î¿µÀÚ ¡¤ Books/FAQ ¡¤ FreeBSD
 
/board/delete.php:¼Ò½ºº¸±â   
 
¾ËÆĹ®¼­
ÀÚÁÖ Àؾî¸Ô°Å³ª, ¸Þ¸ðÇØ µÑ Çʿ伺ÀÌ ÀÖ´Â ÆÁÀ̳ª ¹®¼­, ±âŸ µîµî
[*** ¾²±â ±ÝÁö´Ü¾î ÆÐÅÏ ***]
±Û º»¹® Áß°£¿¡ ¾÷·ÎµåÇÒ À̹ÌÁö¸¦ Ãß°¡ÇÏ´Â ¹æ¹ý : @@À̹ÌÁöÀ̸§@@
ex) @@foo.gif@@
 ¡Ú ±Û Áö¿ì±â Ç׸ñÀÔ´Ï´Ù. Çѹø ´õ »ý°¢ÇÏ½Ã°í °áÁ¤ÇϽʽÿÀ.!!!
Á¦¸ñ 235 : [php] ´ë¿ë·® post ÆÄÀÏ Ã³¸®
 À̸§  »êÀÌ [Ȩ]http://linuxchannel.net/
[php] ´ë¿ë·® post ÆÄÀÏ Ã³¸®

-- php.ini ------------------
file_uploads = On
upload_max_filesize = 300M
post_max_size = 350M
max_execution_time = 30
max_input_time = 60
memory_limit = 512M ;; // not work in script file
-----------------------------

-----------------------------
$tofile = 'foobar.data';
$fp = fopen('php://input','r'); // HTTP/POST raw data
while(!feof($fp))
{
$buf = fread($fp,1048576);
file_put_contents($tofile,$buf,FILE_APPEND);
}
fclose($fp);
-----------------------------

or

-----------------------------
$tofile = 'foobar.data';
$src = fopen('php://input','r'); // HTTP/POST raw data
$dst = fopen($tofile,'w');
stream_copy_to_stream($src,$dst);
fclose($dst);
fclose($src);
-----------------------------
2010³â 03¿ù 26ÀÏ 00:41:23 ±Ý(»õº®)  from 114.111.62.248
0
¾ÏÈ£: °ø¿ë º¸¾È SSL ¼­¹ö°¡ ÁغñµÇ±â Àü±îÁö´Â off ÇÕ´Ï´Ù

apache lighttpd linuxchannel.net 
Copyright 1997-2024. linuxchannel.net. All rights reserved.

Page loading: 0.04(server) + (network) + (browser) seconds