Toggle main menu visibility
新聞
下載
教材
影音
討論
其他選單
好站連結
行事曆
電子相簿
常見問題
萬用表單
即時留言簿
友站消息
社大學員
:::
登入
登入
帳號
密碼
登入
重整畫面
:::
所有書籍
「[1062] PHP7入門」目錄
MarkDown
5. 編輯器及上傳縮圖
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-2 config.php
\[1062\] PHP7入門 =============== ``` isHTML(true); $mail->CharSet = "UTF-8"; $mail->WordWrap = 80; $mail->setFrom($from_email, $from_name); $mail->AddReplyTo($from_email, $from_name); /**** * Set who the message is to be sent to * CAN BE SET TO addAddress(youremail@website.com, 'Your Name') FOR PRIVATE USER APPROVAL BY MODERATOR * SET TO addAddress($email, $user) FOR USER SELF-VERIFICATION *****/ $mail->addAddress($email, $user); //Sets message body content based on type (verification or confirmation) if ($type == 'Verify') { //Set the subject line $mail->Subject = $user . ' Account Verification'; //Set the body of the message $mail->Body = $verifymsg . '
' . $verifyurl . '
'; $mail->AltBody = $verifymsg . $verifyurl; } elseif ($type == 'Active') { //Set the subject line $mail->Subject = $site_name . ' Account Created!'; //Set the body of the message $mail->Body = $active_email . '
' . $signin_url . '
'; $mail->AltBody = $active_email . $signin_url; }; //SMTP Settings if ($mailServerType == 'smtp') { $mail->IsSMTP(); //Enable SMTP $mail->SMTPAuth = true; //SMTP Authentication $mail->Host = $smtp_server; //SMTP Host //Defaults: Non-Encrypted = 25, SSL = 465, TLS = 587 $mail->SMTPSecure = $smtp_security; // Sets the prefix to the server $mail->Port = $smtp_port; //SMTP Port //SMTP user auth $mail->Username = $smtp_user; //SMTP Username $mail->Password = $smtp_pw; //SMTP Password //******************** $mail->SMTPDebug = 0; //Set to 0 to disable debugging (for production) } try { $mail->Send(); } catch (phpmailerException $e) { echo $e->errorMessage(); // Error messages from PHPMailer } catch (Exception $e) { echo $e->getMessage(); // Something else } } } ```
:::
搜尋
search
進階搜尋
QR Code 區塊
快速登入
所有討論區
「PHP全端開發」線上課程討論區
XOOPS使用討論區
一般研習學員
社大學員專用
路過哈啦區
XOOPS佈景設計
XOOPS模組開發
Tad書籍區
即時留言簿
書籍目錄
展開
|
闔起
線上使用者
68
人線上 (
20
人在瀏覽
線上書籍
)
會員: 0
訪客: 68
更多…