<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-Hant-TW">
	<id>http://well-being-ng.net/wiki1231/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%E9%BB%83%E6%9F%8F%E5%AF%A6</id>
	<title>六年制學程 - 使用者貢獻 [zh-tw]</title>
	<link rel="self" type="application/atom+xml" href="http://well-being-ng.net/wiki1231/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=%E9%BB%83%E6%9F%8F%E5%AF%A6"/>
	<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%89%B9%E6%AE%8A:%E4%BD%BF%E7%94%A8%E8%80%85%E8%B2%A2%E7%8D%BB/%E9%BB%83%E6%9F%8F%E5%AF%A6"/>
	<updated>2026-04-09T17:45:52Z</updated>
	<subtitle>使用者貢獻</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33980</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33980"/>
		<updated>2017-09-14T03:37:51Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類:網頁程式撰寫]]&lt;br /&gt;
Class resources:&lt;br /&gt;
Hand-out: http://jendo.org/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017&lt;br /&gt;
&lt;br /&gt;
Software: &lt;br /&gt;
1. Filezilla&lt;br /&gt;
2. EmEditor&lt;br /&gt;
&lt;br /&gt;
Programs: &lt;br /&gt;
1. form.php&lt;br /&gt;
2. r.php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copy past code from hand-outs and change personal info to own&lt;br /&gt;
r.php calls your name and phone number from form.php and sends it to the server so that its put into a list that the server admin can see&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Browser: a program that communicates with the server and sends it back to the user&lt;br /&gt;
Server: this is the place where all the information gets processed and translated back to us&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;gt; = Tags &lt;br /&gt;
Tags must be in pairs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Meta&amp;gt; = Define&lt;br /&gt;
&amp;lt;br/&amp;gt; = Break&lt;br /&gt;
&lt;br /&gt;
form.php:&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;#039;content-type&amp;#039; content=&amp;#039;text/html;charset=UTF-8&amp;#039;&amp;gt;&lt;br /&gt;
//the above line defines the attributes of this program&lt;br /&gt;
&amp;lt;form action=&amp;#039;r.php&amp;#039;&amp;gt;&lt;br /&gt;
//action to send information requested by r.php to the server&lt;br /&gt;
姓名：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;__&amp;#039; value=&amp;#039;____&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
email：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;email&amp;#039; value=&amp;#039;alledu2@gmail.com&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
電話：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;phone&amp;#039; value=&amp;#039;0987466665&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
//defines the input to text setting the name of this variable to what is typed in, and &amp;lt;br/&amp;gt; stands for break which moves everything you type after this to the next line&lt;br /&gt;
&amp;lt;input type=&amp;#039;submit&amp;#039; value=&amp;#039;送出&amp;#039; /&amp;gt;&lt;br /&gt;
//as we can see the input type is no longer &amp;quot;text&amp;quot; but instead &amp;quot;submit&amp;quot; therefor this will become a button that submits the information to r.php&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
//closing bracket of the &amp;lt;from&amp;gt; tab, meaning everything between the two will get sent to r.php for processing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
r.php:&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
 $connect=mysql_connect(&amp;#039;localhost&amp;#039;,&amp;#039;assistant&amp;#039;,&amp;#039;aide&amp;#039;);&lt;br /&gt;
//connects r.php to the local server MySQL in which the information will be processed&lt;br /&gt;
 mysql_select_db(&amp;#039;助理們&amp;#039;);&lt;br /&gt;
//requests MySQL to select the variable &amp;quot;db&amp;quot;&lt;br /&gt;
 mysql_query(&amp;quot;insert into web set 姓名=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;姓名&amp;#039;].&amp;quot;&amp;#039;,phone=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;phone&amp;#039;].&amp;quot;&amp;#039;&amp;quot;);&lt;br /&gt;
//inserts the information needed from form.php into the query which will be shown to the server admin&lt;br /&gt;
 mysql_close($connect);&lt;br /&gt;
//closes the connection after receiving the needed data&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Day 2:&lt;br /&gt;
&lt;br /&gt;
Project: Contacts&lt;br /&gt;
&lt;br /&gt;
Files: 網頁程式撰寫 &amp;amp; HTMLeBook&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. D ✔&lt;br /&gt;
2. A ✔&lt;br /&gt;
3. B ✔&lt;br /&gt;
4. C ✔&lt;br /&gt;
5. B ✔&lt;br /&gt;
6. C ✔&lt;br /&gt;
7. D ✔&lt;br /&gt;
8. A ✔&lt;br /&gt;
9. C ✔&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Hyper Text Markup Language, Must have opening and closing brackets &lt;br /&gt;
2. &amp;lt;meta&amp;gt; Defines program content&lt;br /&gt;
   &amp;lt;i&amp;gt; &amp;#039;&amp;#039;Italic&amp;#039;&amp;#039;&lt;br /&gt;
   &amp;lt;br&amp;gt; Break&lt;br /&gt;
   &amp;lt;hr&amp;gt; Thematic break or Horizontal Ruler&lt;br /&gt;
   &amp;lt;ul&amp;gt; Un-ordered list&lt;br /&gt;
   &amp;lt;li&amp;gt; List item&lt;br /&gt;
3. Ol &amp;amp; Ul, numbered and dots, div can contain much more information than span&lt;br /&gt;
4. &amp;lt;table&amp;gt; &amp;lt;tr&amp;gt; &amp;lt;td&amp;gt;&lt;br /&gt;
5. &amp;lt;option&amp;gt; &amp;lt;select&amp;gt; &amp;amp; &amp;lt;checked&amp;gt;&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33943</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33943"/>
		<updated>2017-09-14T02:28:34Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類:網頁程式撰寫]]&lt;br /&gt;
Class resources:&lt;br /&gt;
Hand-out: http://jendo.org/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017&lt;br /&gt;
&lt;br /&gt;
Software: &lt;br /&gt;
1. Filezilla&lt;br /&gt;
2. EmEditor&lt;br /&gt;
&lt;br /&gt;
Programs: &lt;br /&gt;
1. form.php&lt;br /&gt;
2. r.php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copy past code from hand-outs and change personal info to own&lt;br /&gt;
r.php calls your name and phone number from form.php and sends it to the server so that its put into a list that the server admin can see&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Browser: a program that communicates with the server and sends it back to the user&lt;br /&gt;
Server: this is the place where all the information gets processed and translated back to us&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;gt; = Tags &lt;br /&gt;
Tags must be in pairs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Meta&amp;gt; = Define&lt;br /&gt;
&amp;lt;br/&amp;gt; = Break&lt;br /&gt;
&lt;br /&gt;
form.php:&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;#039;content-type&amp;#039; content=&amp;#039;text/html;charset=UTF-8&amp;#039;&amp;gt;&lt;br /&gt;
//the above line defines the attributes of this program&lt;br /&gt;
&amp;lt;form action=&amp;#039;r.php&amp;#039;&amp;gt;&lt;br /&gt;
//action to send information requested by r.php to the server&lt;br /&gt;
姓名：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;__&amp;#039; value=&amp;#039;____&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
email：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;email&amp;#039; value=&amp;#039;alledu2@gmail.com&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
電話：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;phone&amp;#039; value=&amp;#039;0987466665&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
//defines the input to text setting the name of this variable to what is typed in, and &amp;lt;br/&amp;gt; stands for break which moves everything you type after this to the next line&lt;br /&gt;
&amp;lt;input type=&amp;#039;submit&amp;#039; value=&amp;#039;送出&amp;#039; /&amp;gt;&lt;br /&gt;
//as we can see the input type is no longer &amp;quot;text&amp;quot; but instead &amp;quot;submit&amp;quot; therefor this will become a button that submits the information to r.php&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
//closing bracket of the &amp;lt;from&amp;gt; tab, meaning everything between the two will get sent to r.php for processing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
r.php:&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
 $connect=mysql_connect(&amp;#039;localhost&amp;#039;,&amp;#039;assistant&amp;#039;,&amp;#039;aide&amp;#039;);&lt;br /&gt;
//connects r.php to the local server MySQL in which the information will be processed&lt;br /&gt;
 mysql_select_db(&amp;#039;助理們&amp;#039;);&lt;br /&gt;
//requests MySQL to select the variable &amp;quot;db&amp;quot;&lt;br /&gt;
 mysql_query(&amp;quot;insert into web set 姓名=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;姓名&amp;#039;].&amp;quot;&amp;#039;,phone=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;phone&amp;#039;].&amp;quot;&amp;#039;&amp;quot;);&lt;br /&gt;
//inserts the information needed from form.php into the query which will be shown to the server admin&lt;br /&gt;
 mysql_close($connect);&lt;br /&gt;
//closes the connection after receiving the needed data&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Project: Contacts&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. D ✔&lt;br /&gt;
2. A ✔&lt;br /&gt;
3. B ✔&lt;br /&gt;
4. C ✔&lt;br /&gt;
5. B ✔&lt;br /&gt;
6. C ✔&lt;br /&gt;
7. D ✔&lt;br /&gt;
8. A ✔&lt;br /&gt;
9. C ✔&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Hyper Text Markup Language, Must have opening and closing brackets &lt;br /&gt;
2. &amp;lt;meta&amp;gt; Defines program content&lt;br /&gt;
   &amp;lt;i&amp;gt; &amp;#039;&amp;#039;Italic&amp;#039;&amp;#039;&lt;br /&gt;
   &amp;lt;br&amp;gt; Break&lt;br /&gt;
   &amp;lt;hr&amp;gt; Thematic break&lt;br /&gt;
   &amp;lt;ul&amp;gt; Un-ordered list&lt;br /&gt;
   &amp;lt;li&amp;gt; List item&lt;br /&gt;
3. &lt;br /&gt;
4. &amp;lt;table&amp;gt; &amp;lt;tr&amp;gt; &amp;lt;td&amp;gt;&lt;br /&gt;
5. &amp;lt;option&amp;gt;&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33917</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33917"/>
		<updated>2017-09-14T01:27:31Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類:網頁程式撰寫]]&lt;br /&gt;
Class resources:&lt;br /&gt;
Hand-out: http://jendo.org/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017&lt;br /&gt;
&lt;br /&gt;
Software: &lt;br /&gt;
1. Filezilla&lt;br /&gt;
2. EmEditor&lt;br /&gt;
&lt;br /&gt;
Programs: &lt;br /&gt;
1. form.php&lt;br /&gt;
2. r.php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copy past code from hand-outs and change personal info to own&lt;br /&gt;
r.php calls your name and phone number from form.php and sends it to the server so that its put into a list that the server admin can see&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Browser: a program that communicates with the server and sends it back to the user&lt;br /&gt;
Server: this is the place where all the information gets processed and translated back to us&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;gt; = Tags &lt;br /&gt;
Tags must be in pairs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Meta&amp;gt; = Define&lt;br /&gt;
&amp;lt;br/&amp;gt; = Break&lt;br /&gt;
&lt;br /&gt;
form.php:&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;#039;content-type&amp;#039; content=&amp;#039;text/html;charset=UTF-8&amp;#039;&amp;gt;&lt;br /&gt;
//the above line defines the attributes of this program&lt;br /&gt;
&amp;lt;form action=&amp;#039;r.php&amp;#039;&amp;gt;&lt;br /&gt;
//action to send information requested by r.php to the server&lt;br /&gt;
姓名：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;__&amp;#039; value=&amp;#039;____&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
email：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;email&amp;#039; value=&amp;#039;alledu2@gmail.com&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
電話：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;phone&amp;#039; value=&amp;#039;0987466665&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
//defines the input to text setting the name of this variable to what is typed in, and &amp;lt;br/&amp;gt; stands for break which moves everything you type after this to the next line&lt;br /&gt;
&amp;lt;input type=&amp;#039;submit&amp;#039; value=&amp;#039;送出&amp;#039; /&amp;gt;&lt;br /&gt;
//as we can see the input type is no longer &amp;quot;text&amp;quot; but instead &amp;quot;submit&amp;quot; therefor this will become a button that submits the information to r.php&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
//closing bracket of the &amp;lt;from&amp;gt; tab, meaning everything between the two will get sent to r.php for processing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
r.php:&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
 $connect=mysql_connect(&amp;#039;localhost&amp;#039;,&amp;#039;assistant&amp;#039;,&amp;#039;aide&amp;#039;);&lt;br /&gt;
//connects r.php to the local server MySQL in which the information will be processed&lt;br /&gt;
 mysql_select_db(&amp;#039;助理們&amp;#039;);&lt;br /&gt;
//requests MySQL to select the variable &amp;quot;db&amp;quot;&lt;br /&gt;
 mysql_query(&amp;quot;insert into web set 姓名=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;姓名&amp;#039;].&amp;quot;&amp;#039;,phone=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;phone&amp;#039;].&amp;quot;&amp;#039;&amp;quot;);&lt;br /&gt;
//inserts the information needed from form.php into the query which will be shown to the server admin&lt;br /&gt;
 mysql_close($connect);&lt;br /&gt;
//closes the connection after receiving the needed data&lt;br /&gt;
?&amp;gt;&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33559</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33559"/>
		<updated>2017-09-07T04:01:09Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類:網頁程式撰寫]]&lt;br /&gt;
Class resources:&lt;br /&gt;
Hand-out: http://jendo.org/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017&lt;br /&gt;
Hand-out print version: http://jendo.org/printOut/%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB2017.html&lt;br /&gt;
form.php link: http://6years.jendo.org/~%E9%BB%83%E6%9F%8F%E5%AF%A6/php/form.php&lt;br /&gt;
Book chapter one test criteria: http://jendo.org/wiki1231/index.php?title=PHP,MySQL,AJAX,%E7%B6%B2%E9%A0%81%E8%A8%AD%E8%A8%88%E7%AF%84%E4%BE%8B%E6%95%99%E6%9C%AC&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Copy past code from hand-outs and change personal info to own&lt;br /&gt;
r.php calls your name and phone number from form.php and sends it to the server so that its put into a list that the server admin can see&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Browser: a program that communicates with the server and sends it back to the user&lt;br /&gt;
Server: this is the place where all the information gets processed and translated back to us&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;gt; = Tags &lt;br /&gt;
Tags must be in pairs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Meta&amp;gt; = Define&lt;br /&gt;
&amp;lt;br/&amp;gt; = Break&lt;br /&gt;
&lt;br /&gt;
form.php:&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;#039;content-type&amp;#039; content=&amp;#039;text/html;charset=UTF-8&amp;#039;&amp;gt;&lt;br /&gt;
//the above line defines the attributes of this program&lt;br /&gt;
&amp;lt;form action=&amp;#039;r.php&amp;#039;&amp;gt;&lt;br /&gt;
//action to send information requested by r.php to the server&lt;br /&gt;
姓名：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;__&amp;#039; value=&amp;#039;____&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
email：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;email&amp;#039; value=&amp;#039;alledu2@gmail.com&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
電話：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;phone&amp;#039; value=&amp;#039;0987466665&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
//defines the input to text setting the name of this variable to what is typed in, and &amp;lt;br/&amp;gt; stands for break which moves everything you type after this to the next line&lt;br /&gt;
&amp;lt;input type=&amp;#039;submit&amp;#039; value=&amp;#039;送出&amp;#039; /&amp;gt;&lt;br /&gt;
//as we can see the input type is no longer &amp;quot;text&amp;quot; but instead &amp;quot;submit&amp;quot; therefor this will become a button that submits the information to r.php&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
//closing bracket of the &amp;lt;from&amp;gt; tab, meaning everything between the two will get sent to r.php for processing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
r.php:&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
 $connect=mysql_connect(&amp;#039;localhost&amp;#039;,&amp;#039;assistant&amp;#039;,&amp;#039;aide&amp;#039;);&lt;br /&gt;
//connects r.php to the local server MySQL in which the information will be processed&lt;br /&gt;
 mysql_select_db(&amp;#039;助理們&amp;#039;);&lt;br /&gt;
//requests MySQL to select the variable &amp;quot;db&amp;quot;&lt;br /&gt;
 mysql_query(&amp;quot;insert into web set 姓名=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;姓名&amp;#039;].&amp;quot;&amp;#039;,phone=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;phone&amp;#039;].&amp;quot;&amp;#039;&amp;quot;);&lt;br /&gt;
//inserts the information needed from form.php into the query which will be shown to the server admin&lt;br /&gt;
 mysql_close($connect);&lt;br /&gt;
//closes the connection after receiving the needed data&lt;br /&gt;
?&amp;gt;&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33549</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33549"/>
		<updated>2017-09-07T03:54:03Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類:網頁程式撰寫]]&lt;br /&gt;
Copy past code from hand-outs and change personal info to own&lt;br /&gt;
r.php calls your name and phone number from form.php and sends it to the server so that its put into a list that the server admin can see&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Browser: a program that communicates with the server and sends it back to the user&lt;br /&gt;
Server: this is the place where all the information gets processed and translated back to us&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;gt; = Tags &lt;br /&gt;
Tags must be in pairs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Meta&amp;gt; = Define&lt;br /&gt;
&amp;lt;br/&amp;gt; = Break&lt;br /&gt;
&lt;br /&gt;
form.php:&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;#039;content-type&amp;#039; content=&amp;#039;text/html;charset=UTF-8&amp;#039;&amp;gt;&lt;br /&gt;
//the above line defines the attributes of this program&lt;br /&gt;
&amp;lt;form action=&amp;#039;r.php&amp;#039;&amp;gt;&lt;br /&gt;
//action to send information requested by r.php to the server&lt;br /&gt;
姓名：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;__&amp;#039; value=&amp;#039;____&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
email：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;email&amp;#039; value=&amp;#039;alledu2@gmail.com&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
電話：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;phone&amp;#039; value=&amp;#039;0987466665&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
//defines the input to text setting the name of this variable to what is typed in, and &amp;lt;br/&amp;gt; stands for break which moves everything you type after this to the next line&lt;br /&gt;
&amp;lt;input type=&amp;#039;submit&amp;#039; value=&amp;#039;送出&amp;#039; /&amp;gt;&lt;br /&gt;
//as we can see the input type is no longer &amp;quot;text&amp;quot; but instead &amp;quot;submit&amp;quot; therefor this will become a button that submits the information to r.php&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
//closing bracket of the &amp;lt;from&amp;gt; tab, meaning everything between the two will get sent to r.php for processing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
r.php:&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
 $connect=mysql_connect(&amp;#039;localhost&amp;#039;,&amp;#039;assistant&amp;#039;,&amp;#039;aide&amp;#039;);&lt;br /&gt;
//connects r.php to the local server MySQL in which the information will be processed&lt;br /&gt;
 mysql_select_db(&amp;#039;助理們&amp;#039;);&lt;br /&gt;
//requests MySQL to select the variable &amp;quot;db&amp;quot;&lt;br /&gt;
 mysql_query(&amp;quot;insert into web set 姓名=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;姓名&amp;#039;].&amp;quot;&amp;#039;,phone=&amp;#039;&amp;quot;.$_REQUEST[&amp;#039;phone&amp;#039;].&amp;quot;&amp;#039;&amp;quot;);&lt;br /&gt;
//inserts the information needed from form.php into the query which will be shown to the server admin&lt;br /&gt;
 mysql_close($connect);&lt;br /&gt;
//closes the connection after receiving the needed data&lt;br /&gt;
?&amp;gt;&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33546</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33546"/>
		<updated>2017-09-07T03:49:03Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類:網頁程式撰寫]]&lt;br /&gt;
Copy past code from hand-outs and change personal info to own&lt;br /&gt;
r.php calls your name and phone number from form.php and sends it to the server so that its put into a list that the server admin can see&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Browser: a program that communicates with the server and sends it back to the user&lt;br /&gt;
Server: this is the place where all the information gets processed and translated back to us&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&amp;gt; = Tags &lt;br /&gt;
Tags must be in pairs&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Meta&amp;gt; = Define&lt;br /&gt;
&amp;lt;br/&amp;gt; = Break&lt;br /&gt;
&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;#039;content-type&amp;#039; content=&amp;#039;text/html;charset=UTF-8&amp;#039;&amp;gt;&lt;br /&gt;
//the above line defines the attributes of this program&lt;br /&gt;
&amp;lt;form action=&amp;#039;r.php&amp;#039;&amp;gt;&lt;br /&gt;
//action to send information requested by r.php to the server&lt;br /&gt;
姓名：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;__&amp;#039; value=&amp;#039;____&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
email：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;email&amp;#039; value=&amp;#039;alledu2@gmail.com&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
電話：&amp;lt;input type=&amp;#039;text&amp;#039; name=&amp;#039;phone&amp;#039; value=&amp;#039;0987466665&amp;#039; /&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
//defines the input to text setting the name of this variable to what is typed in, and &amp;lt;br/&amp;gt; stands for break which moves everything you type after this to the next line&lt;br /&gt;
&amp;lt;input type=&amp;#039;submit&amp;#039; value=&amp;#039;送出&amp;#039; /&amp;gt;&lt;br /&gt;
//as we can see the input type is no longer &amp;quot;text&amp;quot; but instead &amp;quot;submit&amp;quot; therefor this will become a button that submits the information to r.php&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
//closing bracket of the &amp;lt;from&amp;gt; tab, meaning everything between the two will get sent to r.php for processing&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33519</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33519"/>
		<updated>2017-09-07T01:51:46Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類:網頁程式撰寫]]&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
	<entry>
		<id>http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33516</id>
		<title>網頁程式撰寫/2017/黃柏實</title>
		<link rel="alternate" type="text/html" href="http://well-being-ng.net/wiki1231/index.php?title=%E7%B6%B2%E9%A0%81%E7%A8%8B%E5%BC%8F%E6%92%B0%E5%AF%AB/2017/%E9%BB%83%E6%9F%8F%E5%AF%A6&amp;diff=33516"/>
		<updated>2017-09-07T01:50:53Z</updated>

		<summary type="html">&lt;p&gt;黃柏實：​新頁面: 分類：網頁程式撰寫&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[分類：網頁程式撰寫]]&lt;/div&gt;</summary>
		<author><name>黃柏實</name></author>
	</entry>
</feed>