전체 글 썸네일형 리스트형 Prevent Your CSS and JavaScript Files From Being Cached link href="/stylesheet.css?" rel="stylesheet" type="text/css" /&glt;RENDERS -->link href="/stylesheet.css?1234567890" rel="stylesheet" type="text/css" /&glt;script type="text/javascript" src="/site-script.js?">RENDERS -->script type="text/javascript" src="/site-script.js?1234567890"> 더보기 Read PDF and Word DOC Files Using PHP element Font font-family font-size font-style font-variant font-weight letter-spacing line-height text-decoration text-align text-indent text-transform white-space word-spacing color Background bg-attachment bg-color bg-image bg-position bg-repeat Box width height border-top border-right border-bottom border-left margin padding max-height min-height max-width min-width outline-color outline-styl.. 더보기 Send Files via FTP Using PHP $connection = ftp_connect($server); $login = ftp_login($connection, $ftp_user_name, $ftp_user_pass); if (!$connection || !$login) { die('Connection attempt failed!'); } $upload = ftp_put($connection, $dest, $source, $mode); if (!$upload) { echo 'FTP upload failed!'; } ftp_close($connection); 더보기 Force A Secure Page Using PHP //force redirect to secure page if($_SERVER['SERVER_PORT'] != '443') { header('Location: https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); exit(); } 더보기 이전 1 ··· 129 130 131 132 133 134 135 ··· 179 다음