:::
所有書籍
「[1062] PHP7入門」目錄
MarkDown
5-1 includes/mailsender.php
1. 建構開發環境與系統規劃
1-1 Visual Studio Code編輯器完整設定
1-2 各種訊息整理
1-3 test.php
1-4 index.php
1-5 templates/index.tpl
2. 寫入資料到資料庫
2-1 templates/index.tpl
2-2 templates/admin.tpl
2-3 css/my.css
2-4 admin.php
3. 資料庫讀取與程式的整併
3-1 admin.php
3-2 index.php
3-3 function.php
3-4 templtes/index.tpl
4. 加入登入及管理功能
4-1 header.php
4-2 footer.php
4-3 index.php
4-4 admin.php
4-5 templtes/header.tpl
4-6 templtes/footer.tpl
4-7 templtes/index.tpl
4-8 templtes/admin.tpl
4-9 templates/op_show_article.tpl
4-10 templates/op_list_article.tpl
4-11 css/my.css
4-12 signup.php
4-13 templtes/signup.tpl
5. 編輯器及上傳縮圖
5-1 includes/mailsender.php
5-2 config.php
5-3 verifyuser.php
5-4 signup.php
5-5 header.php
5-6 admin.php
5-7 main_login.php
5-8 loginheader.php
5-9 index.php
5-10 css/my.css
5-11 templates/nav.tpl
5-12 templates/admin.tpl
5-13 templates/index.tpl
5-14 templates/signup.tpl
5-15 templates/verifyuser.tpl
5-16 templates/main_login.tpl
5-17 templates/op_article_form.tpl
5-18 ckeditor/config.js
5-19 elFinder/elfinder_cke.php
6. 使用上傳物件及管理功能
6-1 admin.php
6-2 index.php
6-3 templates/nav.tpl
6-4 templates/index.tpl
6-5 templates/admin.tpl
6-6 templates/footer.tpl
6-7 templates/op_article_form.tpl
6-8 templates/op_list_article.tpl
6-9 templates/op_show_article.tpl
6-10 css/my.css
6-11 reporter.sql
7. 多人合作開發
7-1 admin.php
7-2 index.php
7-3 function.php
7-4 templates/op_modify_article.tpl
7-5 templates/op_article_form.tpl
7-6 templates/op_modify_article.tpl
7-7 .gitignore
8. 文章分頁及搜尋
8-1 index.php
8-2 function.php
8-3 PageBar.php
8-4 search.php
8-5 css/my.css
8-6 templates/op_show_article.tpl
8-7 templates/op_list_article.tpl
8-8 templates/nav.tpl
8-9 templates/search.tpl
8-10 templates/op_search_article.tpl
8-11 templates/op_search_form.tpl
9. JOIN資料表及寄信功能
9-1 search.php
9-2 function.php
9-3 admin.php
9-4 templates/op_search_article.tpl
9-5 templates/op_show_article.tpl
5-3 verifyuser.php
\[1062\] PHP7入門 =============== ``` <pre class="brush:php;gutter:false;"> <?php //Pull '$base_url' and '$signin_url' from this file include 'globalcon.php'; //Pull database configuration from this file include 'dbconf.php'; //Set this for global site use $site_name = '巷集談-街道新聞'; //Maximum Login Attempts $max_attempts = 5; //Timeout (in seconds) after max attempts are reached $login_timeout = 300; //ONLY set this if you want a moderator to verify users and not the users themselves, otherwise leave blank or comment out $admin_email = ''; //EMAIL SETTINGS //SEND TEST EMAILS THROUGH FORM TO https://www.mail-tester.com GENERATED ADDRESS FOR SPAM SCORE $from_email = 'tadbook5@gmail.com'; //Webmaster email $from_name = '管理員'; //"From name" displayed on email //Find specific server settings at https://www.arclab.com/en/kb/email/list-of-smtp-and-pop3-servers-mailserver-list.html $mailServerType = 'smtp'; //IF $mailServerType = 'smtp' $smtp_server = 'smtp.gmail.com'; $smtp_user = 'tadbook5@gmail.com'; $smtp_pw = '12345'; $smtp_port = 587; //465 for ssl, 587 for tls, 25 for other $smtp_security = 'tls'; //ssl, tls or '' //HTML Messages shown before URL in emails (the more $verifymsg = 'Click this link to verify your new account!'; //Verify email message $active_email = 'Your new account is now active! Click this link to log in!'; //Active email message //LOGIN FORM RESPONSE MESSAGES/ERRORS $signupthanks = 'Thank you for signing up! You will receive an email shortly confirming the verification of your account.'; $activemsg = 'Your account has been verified! You may now login at <br><a href="' . $signin_url . '">' . $signin_url . '</a>'; //DO NOT TOUCH BELOW THIS LINE //Unsets $admin_email based on various conditions (left blank, not valid email, etc) if (trim($admin_email, ' ') == '') { unset($admin_email); } elseif (!filter_var($admin_email, FILTER_VALIDATE_EMAIL) == true) { unset($admin_email); echo $invalid_mod; } ; $invalid_mod = '$adminemail is not a valid email address'; //Makes readable version of timeout (in minutes). Do not change. $timeout_minutes = round(($login_timeout / 60), 1); ```
:::
搜尋
search
進階搜尋
QR Code 區塊
快速登入
所有討論區
「PHP全端開發」線上課程討論區
XOOPS使用討論區
一般研習學員
社大學員專用
路過哈啦區
XOOPS佈景設計
XOOPS模組開發
Tad書籍區
即時留言簿
書籍目錄
總目錄
1.建構開發環境與系統規劃
1-1Visual Studio Code編輯器完整設定
1-2各種訊息整理
1-3test.php
1-4index.php
1-5templates/index.tpl
2.寫入資料到資料庫
2-1templates/index.tpl
2-2templates/admin.tpl
2-3css/my.css
2-4admin.php
3.資料庫讀取與程式的整併
3-1admin.php
3-2index.php
3-3function.php
3-4templtes/index.tpl
4.加入登入及管理功能
4-1header.php
4-2footer.php
4-3index.php
4-4admin.php
4-5templtes/header.tpl
4-6templtes/footer.tpl
4-7templtes/index.tpl
4-8templtes/admin.tpl
4-9templates/op_show_article.tpl
4-10templates/op_list_article.tpl
4-11css/my.css
4-12signup.php
4-13templtes/signup.tpl
5.編輯器及上傳縮圖
5-1includes/mailsender.php
5-2config.php
5-3verifyuser.php
5-4signup.php
5-5header.php
5-6admin.php
5-7main_login.php
5-8loginheader.php
5-9index.php
5-10css/my.css
5-11templates/nav.tpl
5-12templates/admin.tpl
5-13templates/index.tpl
5-14templates/signup.tpl
5-15templates/verifyuser.tpl
5-16templates/main_login.tpl
5-17templates/op_article_form.tpl
5-18ckeditor/config.js
5-19elFinder/elfinder_cke.php
6.使用上傳物件及管理功能
6-1admin.php
6-2index.php
6-3templates/nav.tpl
6-4templates/index.tpl
6-5templates/admin.tpl
6-6templates/footer.tpl
6-7templates/op_article_form.tpl
6-8templates/op_list_article.tpl
6-9templates/op_show_article.tpl
6-10css/my.css
6-11reporter.sql
7.多人合作開發
7-1admin.php
7-2index.php
7-3function.php
7-4templates/op_modify_article.tpl
7-5templates/op_article_form.tpl
7-6templates/op_modify_article.tpl
7-7.gitignore
8.文章分頁及搜尋
8-1index.php
8-2function.php
8-3PageBar.php
8-4search.php
8-5css/my.css
8-6templates/op_show_article.tpl
8-7templates/op_list_article.tpl
8-8templates/nav.tpl
8-9templates/search.tpl
8-10templates/op_search_article.tpl
8-11templates/op_search_form.tpl
9.JOIN資料表及寄信功能
9-1search.php
9-2function.php
9-3admin.php
9-4templates/op_search_article.tpl
9-5templates/op_show_article.tpl
展開
|
闔起
線上使用者
27
人線上 (
3
人在瀏覽
線上書籍
)
會員: 0
訪客: 27
更多…
:::
主選單
NTPC OpenID
活動報名
模組控制台
進階區塊管理
站長工具箱(急救版)
網站地圖
Tad Tools 工具包
站長工具箱
行事曆
討論留言
嵌入區塊模組
快速登入
網站計數器
好站連結
最新消息
檔案下載
線上書籍
電子相簿
影音播放
常見問題
萬用表單
友站消息
社大學員
新聞
下載
教材
影音
討論
其他選單
好站連結
行事曆
電子相簿
常見問題
萬用表單
即時留言簿
友站消息
社大學員
登入
登入
帳號
密碼
登入