会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
天生自然
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2020年2月29日
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:综合应用
摘要: <?php // Example 27-1: functions.php $dbhost = 'localhost'; // Unlikely to require changing $dbname = 'robinsnest'; // Modify these... $dbuser = 'robi
阅读全文
posted @ 2020-02-29 15:22 吴裕雄
阅读(173)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:其它HTML5属性
摘要: <!DOCTYPE html> <html> <head> <title>HTML5/Flash Audio</title> </head> <body><br><pre> <audio controls> <object type="application/x-shockwave-flash" d
阅读全文
posted @ 2020-02-29 15:12 吴裕雄
阅读(130)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:HTML5音频和视频
摘要: <!DOCTYPE html> <html> <head> <title>Drawing Arcs</title> <script src='OSC.js'></script> </head> <body> <canvas id='mycanvas' width='640' height='480'
阅读全文
posted @ 2020-02-29 15:10 吴裕雄
阅读(104)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:HTML5画布
摘要: <!DOCTYPE html> <html> <!-- geolocation.html --> <head> <title>Geolocation Example</title> </head> <body> <script> if (typeof navigator.geolocation ==
阅读全文
posted @ 2020-02-29 15:03 吴裕雄
阅读(175)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:HTML5概述
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Lists</title> <link r
阅读全文
posted @ 2020-02-29 15:01 吴裕雄
阅读(95)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:jQuery概述
摘要: <!DOCTYPE html> <html> <head> <title>DOM Traversal: Siblings</title> <script src='jquery-3.2.1.min.js'></script> </head> <body> <ul> <li class='new'>I
阅读全文
posted @ 2020-02-29 14:57 吴裕雄
阅读(111)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:由JavaScript访问CSS
摘要: function C(i) { return document.getElementsByClassname(i) } function S(i) { return O(i).style } function O(i) { return typeof i == 'object' ? i : docu
阅读全文
posted @ 2020-02-29 14:51 吴裕雄
阅读(113)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:支持CSS3的高级CSS
摘要: <!DOCTYPE html> <html> <!-- backgroundimages.html --> <head> <title>CSS3 Multiple Backgrounds Example</title> <style> .border { font-family:'Times New
阅读全文
posted @ 2020-02-29 14:47 吴裕雄
阅读(122)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:CSS简介
摘要: <!DOCTYPE html> <html> <head> <title>Positioning</title> <style> #container { position :absolute; top :50px; left :0px; } #object1 { position :absolut
阅读全文
posted @ 2020-02-29 14:45 吴裕雄
阅读(96)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:使用Ajax
摘要: <?php // xmlget.php if (isset($_GET['url'])) { header('Content-Type: text/xml'); echo file_get_contents("http://".sanitizeString($_GET['url'])); } fun
阅读全文
posted @ 2020-02-29 14:43 吴裕雄
阅读(158)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:JavaScript和PHP验证
摘要: function validateForename(field) { return (field == "") ? "No Forename was entered.\n" : "" } function validateSurname(field) { return (field == "") ?
阅读全文
posted @ 2020-02-29 14:38 吴裕雄
阅读(137)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:JavaScript函数、对象和数组
摘要: <script> function User(forename, username, password) { this.forename = forename this.username = username this.password = password this.showUser = show
阅读全文
posted @ 2020-02-29 14:37 吴裕雄
阅读(123)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:JavaScript中的表达式和控制流
摘要: <script> month = "July" if (month == "October") document.write("It's the fall") </script> <script> a = 1000 b = "1000" if (a == b) document.write("1")
阅读全文
posted @ 2020-02-29 14:32 吴裕雄
阅读(174)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:探究JavaScript
摘要: <html> <head><title>Hello World</title></head> <body> <script type="text/javascript"> document.write("Hello World) </script> </body> </html> Examples
阅读全文
posted @ 2020-02-29 14:25 吴裕雄
阅读(130)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:Cookies、会话和身份验证
摘要: <?php function destroy_session_and_data() { session_start(); $_SESSION = array(); setcookie(session_name(), '', time() - 2592000, '/'); session_destro
阅读全文
posted @ 2020-02-29 14:21 吴裕雄
阅读(170)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:表单处理
摘要: Vanilla <input type="checkbox" name="ice" value="Vanilla"> Chocolate <input type="checkbox" name="ice" value="Chocolate"> Strawberry <input type="chec
阅读全文
posted @ 2020-02-29 14:18 吴裕雄
阅读(131)
评论(0)
推荐(0)
编辑
吴裕雄--天生自然PHP-MySQL-JavaScript学习笔记:使用PHP访问MySQL
摘要: <?php // sqltest.php require_once 'login.php'; $conn = new mysqli($hn, $un, $pw, $db); if ($conn->connect_error) die("Fatal Error"); if (isset($_POST[
阅读全文
posted @ 2020-02-29 14:15 吴裕雄
阅读(139)
评论(0)
推荐(0)
编辑