h1,..., h6: (heading) h1 h2 table: table tr (table row) tr td (table data) ol, ul: (ordered) (unordered) </tag1> </tag4> 1: HTML [1] html: Web HTML he

Size: px
Start display at page:

Download "h1,..., h6: (heading) h1 h2 table: table tr (table row) tr td (table data) ol, ul: (ordered) (unordered) </tag1> </tag4> 1: HTML [1] html: Web HTML he"

Transcription

1 HTML CGI 1 Web HTML (Hyper-Text Markup Language)[1] CGI (Common Gateway Interface)[2] HTML CGI Web Web 2 Web GUI CUI GUI OS GUI GUI Web GUI OS OS Web 3 HTML 3.1 HTML WWW (World Wide Web, Web) Web Web HTML HTML Web HTML HTML HTML 2014 HTML HTML HTML 1 tag_name <tag_name> tag_name </tag_name> / 1 CSS (Cascading Style Sheets) 1/13

2 h1,..., h6: (heading) h1 h2 table: table tr (table row) tr td (table data) ol, ul: (ordered) (unordered) </tag1> </tag4> 1: HTML [1] html: Web HTML head: HTML body: HTML title: HTML p: (paragraph) a: href div: 2 span: li: ol ul form: CGI form input: CGI textarea: select: img: (image) src br: (break line) p hr: (horizontal) meta: head HTML <HTML>... </HTML> <html>... </html> XHTML html body HTML html html 2/13

3 1: HTML 1 <html> <head> 3 <t i t l e>simple web page</ t i t l e> </head> 5 <body> <h1>chapter 1</h1> 7 <h2>s e c t i o n 1</h2> <p>paragraph 1.</p> 9 <p>paragraph 2 : b e f o r e br.<br> a f t e r br.</p> 11 <h2>s e c t i o n 2</h2> <p>f o o bar.</p> 13 <hr> 15 <h1>chapter 2</h1> 17 <h2>s e c t i o n 1</h2> <h2>s e c t i o n 19 </body> </html> 2</h2> id: ID ID name: id ID form href: a a src: img action: form CGI method: form http-equiv: meta content: meta style: CSS 3.3 HTML 2: HTML 1 HTML HTML-lint[3] HTML HTML 2 Firefox 3 head body HTML html html HTML 1 Firefox HTML [1] 3/13

4 2: HTML <!DOCTYPE HTML PUBLIC 2 " //W3C//DTD HTML T r a n s i t i o n a l //EN"> <html lang=" j a "> 4 <head> <meta http equiv=" Content type " 6 content=" t e x t / html ; c h a r s e t=utf 8"> <t i t l e> HTML </ t i t l e> 8 </head> 10 <body> <div id="toc"> 12 <ol> < l i><a href="#c1"> 1 </a> 14 <ul> < l i><a href="#c1. S1 ">1. 1 </a> 16 < l i><a href="#c1. S2 ">1. 2 </a> </ ul> 18 < l i><a href="#c2"> 2 </a> 20 <ul> < l i><a href="#c2. S1 ">2. 1 </a> 22 < l i><a href="#c2. S2 ">2. 2 </a> </ ul> 24 </ ol> 26 </ div> 28 <hr> 30 <div> <h1 id="c1"> 1 </h1> 32 <h2 id="c1. S1 ">1. 1 </h2> <p> 1 </p> 34 <p> 2 <br> </p> 36 <h2 id="c1. S2 ">1. 2 </h2> 38 <p> </p> </ div> 40 <hr> 42 <div> 44 <h1 id="c2"> 2 </h1> <h2 id="c2. S1 ">2. 1 </h2> 46 <h2 id="c2. S2 ">2. 2 </h2> </ div> 48 </body> 50 </html> 4 CGI 4.1 CGI Web Web JavaScript Web Ajax Web CGI 3: HTML Ajax CGI CGI Ajax Web form CGI Google[4] HTML 4 form 4.2 Web CGI CGI 1. Web CGI 4/13

5 time user browser Web server (httpd) Web server (CGI program) : CGI Web 4.3 4: Google 2. CGI 3. Web CGI Web CGI Ajax Web 1. Web 2. Web Web 3. Web CGI 4. CGI 5. Web CGI 6. Web CGI 7. Web Web 5 HTML CGI form form action CGI method HTML URL [5] form CGI method form method method GET, POST 4 1 GET CGI GET GET POST form textarea input select CGI 3 name 4 5/13

6 1: GET POST method URL GET POST textarea select (option) input type 2 textarea : select : option value input : type radio, checkbox, hidden value 1. URL URL [5] 2. (=) 3. (&) CGI 4.4 CGI CGI Perl, PHP, Python, Ruby C CGI HTML 3 CGI HTML CGI [2] REQUEST_METHOD POST GET 3 stdlib.h getenv REQUEST_METHOD URL CGI cgilib CGI 1. & 2. = 3. URL cgilib[6] cgilib GPL[7] cgilib 2 GPL ; 2 GPL ; 6/13

7 type text password radio checkbox file hidden submit reset 2: input form CGI form REQUEST_METHOD QUERY_STRING CONTENT_LENGTH PATH_INFO 3: CGI form method GET POST CGI URL GET &URL cgilib 2 ; GPL GPL cgilib CGI 6 A HTML 7 HTML textarea <form action=" method="get"><input type="submit" value=" "></form> CGI CGI form cgilib CGI CGI CGI type hidden input 8 CGI type hidden HTML CGI 5 HTML CGI Web [8] C CGI cgilib GPL GPL [9] 7/13

8 3: CGI / 1 6 / 2 #include <s t d i o. h> 4 #include <time. h> #include <s t d l i b. h> 6 #define HTML_HEADER(CHAR_SET) \ 8 " Content type : t e x t / html ; c h a r s e t=" CHAR_SET " \n\n " 10 int main ( void ) { 12 const time_t now = time (NULL) ; / ( c f. man a time ) / int num ; 14 srand ( ( unsigned )now ) ; / / 16 num = rand ( ) % ; / / 18 / UTF 8 / 20 puts (HTML_HEADER( "UTF 8" ) ) ; puts ( "<html><body>" ) ; 22 / HTML / 24 p r i n t f ( "<p>seed = %l d ; d i c e = %d</p>\n ", now, num ) ; 26 puts ( "<form a c t i o n =\"/~ inamoto / cgi bin /CGI d i c e. c g i \" method=\"get\">\n " " <input type =\" submit \" value =\" \">\n " 28 "</form>" "</html></body>" ) ; 30 return 0 ; 32 4: CGI HTML <html> 2 <head> <meta http equiv=" Content type " c o n t e n t s=" t e x t / html ; c h a r s e t=utf 8"> 4 <t i t l e> CGI </ t i t l e> </head> 6 <body> 8 <form action=" /~ inamoto / cgi bin /CGI d i c e. c g i " method="get"> 10 </form> </body> 12 </html> <input type=" submit " value=" "> A cgilib CGI ~user ~user/workspace/cgi/src sample.c sample.c cgilib cgi.h #include <cgi.h> CGI ~user/public_html/cgi-bin sample.cgi CGI cgilib CGI 1. cgilib [6] ~user/workspace/cgi/src cgilib 0.7 ~user/workspace/cgi/src/cgilib-0.7.tar.gz 8/13

9 5: CGI / / 2 #include <s t d i o. h> 4 #include <s t d l i b. h> #include <s t r i n g. h> 6 #include <e r r n o. h> #include <a s s e r t. h> 8 #define HTML_HEADER(CHAR_SET) \ 10 " Content type : t e x t / html ; c h a r s e t=" CHAR_SET " \n\n " 12 int main ( void ) { 14 int data_size ; / / char buf = NULL; / / 16 char cp ; 18 puts (HTML_HEADER( "UTF 8" ) ) ; / Web UTF 8 / puts ( "<html><body>" ) ; 20 / POST / 22 i f ( ( cp = getenv ( "REQUEST_METHOD" ) ) && (! strcmp ( cp, "POST" ) ) ) { cp = getenv ( "CONTENT_LENGTH" ) ; / / 24 a s s e r t ( cp ) ; data_size = a t o i ( cp ) ; / / 26 buf = ( char ) malloc ( data_size + 1 ) ; / \0 +1 / cp = f g e t s ( buf, data_size + 1, s t d i n ) ; / / 28 buf [ data_size ] = \0 ; else i f ( cp && (! strcmp ( cp, "GET" ) ) ) { 30 / GET / cp = getenv ( "QUERY_STRING" ) ; 32 a s s e r t ( cp ) ; data_size = s t r l e n ( cp ) ; / / 34 buf = ( char ) malloc ( data_size + 1 ) ; / \0 +1 / memcpy( buf, cp, data_size + 1 ) ; / / 36 else { f p r i n t f ( s t d e r r, " i n v a l i d method : %s \n ", cp ) ; 38 e x i t (EXIT_FAILURE ) ; 40 / / 42 p r i n t f ( " form data f o l l o w s :<br>\n " ) ; f p u t s ( buf, stdout ) ; 44 puts ( " \n</body></html>" ) ; 46 f r e e ( buf ) ; / / 48 return 0 ; (a) cd ~user/workspace/cgi/src (b) tar zxvf cgilib-0.7.tar.gz ~user/workspace/cgi/src/cgilib cgilib cgi.c, aux.c, cookies.c (a) gcc -I cgilib-0.7 -o ~user/public_html/cgi-bin/sample.cgi sample.c cgilib-0.7/cgi.c cgilib-0.7/aux.c cgilib-0.7/cookies.c [1] HTML 4.01 Specification: html401/ [2] The WWW Common Gateway Interface 1.1: 9/13

10 draft-robinson-www-interface [3] : Another HTML-lint gateway, http: //cetus.sakura.ne.jp/htmllint/htmllint.html [4] Google, Inc.: [5] URL Character Encoding Issues: ietf.org/html/rfc1738#section [6] Lightweight CGI Library: org/projects/cgilib/ [7] GNU : wiki/licenses\%2fgnu_general_public_license [8] WWW : com/ [9] : OPINION/ /254769/?ST=network /13

11 6: cgilib CGI / 2 Copyright (C) INAMOTO Tsutomu & Ehime U n i v e r s i t y 4 This program i s f r e e s o f t w a r e ; you can r e d i s t r i b u t e i t and/ or modify i t under the terms of the GNU General Public License 6 as p u b l i s h e d by t h e Free Software Foundation ; e i t h e r v e r s i o n 2 of the License, or ( at your option ) any l a t e r version. 8 This program i s d i s t r i b u t e d in t h e hope t h a t i t w i l l be u s e f u l, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General P u b l i c License f o r more d e t a i l s. 14 You should have r e c e i v e d a copy o f t h e GNU General P u b l i c License along with t h i s program ; i f not, write to the Free Software 16 Foundation, Inc., 59 Temple Place Suite 330, Boston, MA , USA. / 18 / GPL / 20 #include <s t d l i b. h> 22 #include <s t d i o. h> #include <s t r i n g. h> 24 #include <errno. h> 26 #include <c g i. h> 28 int main ( int argc, char argv ) { 30 s_cgi c g i ; char vars, f i l e s ; 32 int i ; 34 c g i = c g i I n i t ( ) ; / c g i l i b / cgisettype ( " t e x t / html ; c h a r s e t=utf 8" ) ; / UTF 8 / 36 cgiheader ( ) ; / HTTP / 38 puts ( "<html><body>" ) ; 40 v a r s = c g i G e t V a r i a b l e s ( c g i ) ; / / i f ( v a r s ) { 42 puts ( "<p> </p>\n<dl>" ) ; for ( i = 0 ; v a r s [ i ] ; i ++) { 44 / / p r i n t f ( "<dt>%s</dt>\n<dd>%s</dd>\n ", v a r s [ i ], cgigetvalue ( c g i, v a r s [ i ] ) ) ; 46 puts ( "</dl>" ) ; 48 c g i F r e e L i s t ( v a r s ) ; / / f i l e s = c g i G e t F i l e s ( c g i ) ; / / i f ( f i l e s ) { 54 puts ( "<p> </p>\n<dl>" ) ; for ( i = 0 ; f i l e s [ i ] ; i ++) { 56 s _ f i l e f i l e v a r ; char b u f f e r [ ] ; 58 FILE f p ; char e1, e2 ; 60 f i l e v a r = c g i G e t F i l e ( c g i, f i l e s [ i ] ) ; 62 p r i n t f ( "<dt> : %s ; : %s</dt>\n<dd>", ( e1 = c g i E s c a p e ( f i l e v a r >f i l e n a m e ) ), ( e2 = c g i E s c a p e ( f i l e v a r >t m p f i l e ) ) ) ; 64 f r e e ( e1 ) ; f r e e ( e2 ) ; / cgiescape / 66 i f (! ( f p = fopen ( f i l e v a r >t m p f i l e, " r " ) ) ) { / / p r i n t f ( " f a i l e d i n opening f i l e : %s<br>\n ", s t r e r r o r ( e r r n o ) ) ; 68 e x i t (EXIT_FAILURE ) ; 70 while ( f g e t s ( b u f f e r, s i z e o f ( b u f f e r ), f p ) ) { / / p r i n t f ( "%s ", b u f f e r ) ; / \n / 72 f c l o s e ( f p ) ; 74 puts ( "</dd></dl>" ) ; 76 c g i F r e e L i s t ( f i l e s ) ; 78 puts ( "</body></html>" ) ; 80 c g i F r e e ( c g i ) ; / / 82 return EXIT_SUCCESS ; 84 11/13

12 7: CGI HTML <html> 2 <head> <meta http equiv=" Content type " c o n t e n t s=" t e x t / html ; c h a r s e t=utf 8"> 4 <t i t l e>c g i dump</ t i t l e> </head> 6 <body> 8 <h1> GET</h1> <form action=" /~ inamoto / cgi bin /CGI decoded dump. c g i " method="get"> 10 <h2>i n p u t</h2> <ul> 12 < l i>type t e x t <input type=" t e x t " value=" i n p u t p l z. " name="get t e x t "> 14 < l i>type password <input type=" password " value=" password p l z. " name="get password "> 16 < l i>type r a d i o <input type=" r a d i o " value=" yes " name=" ">yes <input type=" r a d i o " checked value=" " name=" "> 18 < l i>type checkbox 20 <input type=" checkbox " value=" apple " name="get checkbox ">apple <input type=" checkbox " value=" " name="get checkbox "> <input type=" checkbox " value=" " name="get checkbox "> 22 < l i>type hidden <input type=" hidden " value=" hidden v a l u e " name="get hidden "> 24 </ ul> 26 <h2>t e x t a r e a</h2> <textarea name="get t e x t a r e a "> </ textarea> 28 <h2>s e l e c t</h2> 30 <s e l e c t name="get s e l e c t "> <option value=" 1 "> 1</ option> <option value=" o p t i o n 2 ">o p t i o n 2</ option> <option value=" 3 "> 3</ option> 32 </ s e l e c t> <br> 34 <input type=" submit " value=" "> <input type=" r e s e t " value=" "> </form> 36 <hr> 38 <h1> POST</h1> 40 <form action=" /~ inamoto / cgi bin /CGI decoded dump. c g i " method="post"> <h2>i n p u t</h2> 42 <ul> < l i>type password 44 <input type=" password " value=" password p l z. " name="post password "> 46 </ ul> 48 <h2>t e x t a r e a</h2> <textarea name="post t e x t a r e a "> </ textarea> 50 <br> <input type=" submit " value=" "> <input type=" r e s e t " value=" "> 52 </form> 54 <hr> 56 <h2> </h2> <form action=" /~ inamoto / cgi bin /CGI decoded dump. c g i " method="post" enctype=" multipart / form data "> 58 <h2>i n p u t</h2> <ul> 60 < l i>type t e x t <input type=" t e x t " value=" i n p u t p l z. " name=" form t e x t "> 62 < l i>type password <input type=" password " value=" password p l z. " name=" form password "> 64 < l i>type r a d i o <input type=" r a d i o " value=" yes " name=" ">yes <input type=" r a d i o " checked value=" " name=" "> 66 < l i>type checkbox <input type=" checkbox " value=" a p p le " name=" form checkbox ">a p p l e 68 <input type=" checkbox " value=" " name=" form checkbox "> <input type=" checkbox " value=" " name=" form checkbox "> 70 < l i>type hidden <input type=" hidden " value=" hidden v a l u e " name=" form hidden "> 72 < l i s t y l e=" font weight : bold ">type f i l e <input type=" f i l e " name=" form f i l e "> 74 </ ul> 76 <br> <input type=" submit " value=" "> <input type=" r e s e t " value=" "> 78 </form> </body> 80 </html> 12/13

13 8: CGI / 2 Copyright (C) INAMOTO Tsutomu & Ehime U n i v e r s i t y 4 This program i s f r e e s o f t w a r e ; you can r e d i s t r i b u t e i t and/ or modify i t under t h e terms o f t h e GNU General P u b l i c License 6 as p u b l i s h e d by t h e Free Software Foundation ; e i t h e r v e r s i o n 2 o f t h e License, or ( at your o p t i o n ) any l a t e r v e r s i o n. 8 This program i s d i s t r i b u t e d in t h e hope t h a t i t w i l l be u s e f u l, 10 but WITHOUT ANY WARRANTY; w i t h o u t even t h e i m p l i e d warranty o f MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See t h e 12 GNU General P u b l i c License f o r more d e t a i l s. 14 You s h o u l d have r e c e i v e d a copy o f t h e GNU General P u b l i c License along with t h i s program ; i f not, w r i t e to t h e Free Software 16 Foundation, Inc., 59 Temple Place S u i t e 330, Boston, MA , USA. / 18 / / 20 #define VAR_NAME " remaining " 22 #define NEW_NAME " new_name" 24 #include <s t d i o. h> #include <s t d l i b. h> 26 #include <s t r i n g. h> #include <c g i. h> 28 int main ( void ) 30 { s_cgi c g i ; 32 char vars, cp ; char var_value [ ] = " " ; / / 34 int i ; 36 c g i = c g i I n i t ( ) ; / c g i l i b / cgisettype ( " t e x t / html ; c h a r s e t=utf 8" ) ; / UTF 8 / 38 cgiheader ( ) ; / HTTP / 40 v a r s = c g i G e t V a r i a b l e s ( c g i ) ; / / i f ( v a r s ) { 42 for ( i = 0 ; v a r s [ i ] ; i ++) { i f (! strcmp ( v a r s [ i ], VAR_NAME) ) { 44 s t rncpy ( var_value, cgigetvalue ( cgi, VAR_NAME), s i z e o f ( var_value ) ) ; / / break ; c g i F r e e L i s t ( v a r s ) ; / / 50 i f ( ( cp = cgigetvalue ( cgi, NEW_NAME) ) && strcmp ( cp, " " ) ) { / / 52 strncpy ( var_value, cp, s i z e o f ( var_value ) ) ; / / 54 p r i n t f ( "<html><body><p> %s = %s</p>", VAR_NAME, var_value ) ; / / 56 p r i n t f ( "<form a c t i o n =\"/~ inamoto / cgi bin /CGI hidden. c g i \" method=\"post\"> " ) ; p r i n t f ( " : <input type =\" t e x t \" value =\"\" name=\"%s \"> ", NEW_NAME) ; 58 i f ( strcmp ( var_value, " " ) ) { p r i n t f ( "<input type =\" hidden \" name=\"%s \" value=\"%s \"> ", 60 VAR_NAME, var_value ) ; / hidden / 62 puts ( "<input type =\" submit \" value =\" \"></form></body></html>" ) ; 64 c g i F r e e ( c g i ) ; / / 66 return EXIT_SUCCESS; 13/13

div: 3 span: 4 h1,..., h6: (heading) h1 h2 </tag1> table: table tr (table row) tr td (table data) ol, ul: (ordered) (unordered) </tag4> 1: HTML

div: 3 span: 4 h1,..., h6: (heading) h1 h2 </tag1> table: table tr (table row) tr td (table data) ol, ul: (ordered) (unordered) </tag4> 1: HTML HTML CSS JavaScript CGI 1 Web HTML (Hyper-Text Markup Language)[1] CSS (Cascading Style Sheets)[2, 3] JavaScript ([4]) CGI (Common Gateway Interface)[5] HTML Web Web 2 Web GUI CUI 1 GUI OS GUI GUI Web

More information

div: 3 span: 4 h1,..., h6: (heading) h1 h2 </tag1> table: table tr (table row) tr td (table data) ol, ul: (ordered) (unordered) </tag4> 1: HTML

div: 3 span: 4 h1,..., h6: (heading) h1 h2 </tag1> table: table tr (table row) tr td (table data) ol, ul: (ordered) (unordered) </tag4> 1: HTML HTML CSS JavaScript CGI, PHP 1 Web HTML (Hyper-Text Markup Language)[1] CSS (Cascading Style Sheets)[2, 3] JavaScript ([4]) CGI (Common Gateway Interface)[5], PHP[6] HTML Web Web PHP 5, 7 Web 2 Web GUI

More information

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID 10 10 10.1 1. 2. 3. HTML(HyperText Markup Language) Web [ ][ ] HTML Web HTML HTML Web HTML ~b08a001/www/ ( ) ~b08a001/www-local/ ( ) html ( ) 10.2 WWW WWW-local b08a001 ~b08a001/www/ ~b08a001/www-local/

More information

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3...................

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3................... 0448051 1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3.................... 4 4........................ 6 5...........................

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web HTML 1 Web 1 Web Web 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML XHTML(XHTML 1.0 Transitional)

More information

オンラインテスト

オンラインテスト 1. 2. JavaScript 3. Perl 4. CGI 1. WWW HTML WWW World Wide Web HTML Hyper Text Markup Language XML, XHTML Java (.java) JavaApplet (.class,.jar) JavaServlet (.jsp) JavaScript (.html) CGI (.cgi) SSI (.shtml)

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML Web 工学博士大堀隆文 博士 ( 工学 ) 木下正博 共著 World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML ii HTML CSS CSS HTML HTML HTML HTML Eclipse Eclipse Eclipse

More information

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 1 6 (1) (2) HTML (3) PDF Copy&Paste 1 Web 1 Web Web 1 Web HTML 6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 3 1.1 HTML Web HTML(Hyper Text Markup Language)

More information

経営論集2011_07_小松先生.indd

経営論集2011_07_小松先生.indd 20 1 2010 103 125 HTML+CSS HTML CSS CMS Web CMS CMS CMS CMS DreamWeaver Web Web CMS Web Web CSS Web Eclipse HTML CSS Web Web HTML CSS Web HTML CSS Web HTML CSS Web 1 Web Web HTML Web 103 HTML+CSS Web HTML

More information

HTML文書の作成

HTML文書の作成 99 C HTML 1 1 2 HTML 1 3 2 4 HTML 2 4.1... 2 4.2... 3 4.3... 5 5 HTML 8 5.1... 8 5.2... 10 5.3... 12 6 HTML 13 7 13 1 HTML HTML [1] 2 HTML HTML Hyper-Text Markup Language World Wide Web (WWW)[2] HTML Hyper-Text

More information

54 5 PHP Web hellow.php 1:<?php 2: echo "Hellow, PHP!Y=n"; 3:?> echo PHP C 2: printf("hellow, PHP!Y=n"); PHP (php) $ php hellow.php Hellow, PHP! 5.1.2

54 5 PHP Web hellow.php 1:<?php 2: echo Hellow, PHP!Y=n; 3:?> echo PHP C 2: printf(hellow, PHP!Y=n); PHP (php) $ php hellow.php Hellow, PHP! 5.1.2 53 5 PHP Web Web 1 Web OS (Web) HTML Web Web Web 5.1 PHP Web PHP ( ) 5.1.1 hellow.php ( ) Hellow, PHP! PHP hellow.php PHP HTML PHP 54 5 PHP Web hellow.php 1:

More information

untitled

untitled Ajax Web Ajax http://www.openspc2.org/javascript/ajax/ajax_stu dy/index.html Life is beautiful Ajax http://satoshi.blogs.com/life/2005/06/ajax.html Ajax Ajax Asynchronous JavaScript + XML JavaScript XML

More information

388-356697252-2.pdf

388-356697252-2.pdf 専修大学 ネットワーク情報学部 2012年度 特殊演習 (Webプログラミング) 新居雅行 / Masayuki Nii 2 HTML/CSS 2012 4 23 1 2-1 Web 2 2-1 80 SSL Apache WindowsIIS Internet Information Server HTTP HyperText Transfer Protocol HTML HTML 1 1 [ URI]

More information

1 JIS X 8341-3:2016 WCAG2.0 http://waic.jp/docs/wcag2/understanding.html WCAG2.0 http://waic.jp/docs/wcag2/techs.html 2 ... 1... 3... 6 1.1... 6 1.2... 7... 8 1.1.1... 8 1.2.1... 13 1.2.2... 14 1.2.3...

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 11 20 p.1/34 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

VQT3A26-1 DMR-T2000R μ μ μ ! R ! l l l [HDD] [BD-RE] [BD-R] [BD-V] [RAM] [-R] [-R]DL] [-RW] [DVD-V] [CD] [SD] [USB] [RAM AVCREC ] [-R AVCREC ] [-R]DL AVCREC ] [RAM VR ][-R VR ] [-R]DL VR ] [-RW VR ]

More information

II 2 p.2 2 GET POST form action URL Aisatsu 2.1 Servlet GET GET : Query String QueryStringTest.java 1 import java.io.ioexception; 2 import java.io.pri

II 2 p.2 2 GET POST form action URL Aisatsu 2.1 Servlet GET GET : Query String QueryStringTest.java 1 import java.io.ioexception; 2 import java.io.pri II 2 p.1 2 GET POST Servlet Servlet Servlet CGI/Servlet GET POST 2 GET URL? FORM GET : http://maps.google.co.jp/maps?hl=ja&ll=34.292821,134.063587&z=15 POST HTML HTML : Aisatsu.html HTML 1

More information

SNS 14,917,000,000 10,780,000 SNS 8,850,000,000 14,900,000 MobileSpace 8,000,000,000 3,000,000 SNS 6,000,000,000 6,000,000 3,863,000,000 22,100,000 3,790,000,000 8,970,000 i i 3,500,000,000 6,000,000 2,001,000,000-1,900,000,000

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

More information

VQT2P76 DMR-BWT2000 DMR-BWT1000 μ μ μ ! R ! l l l [HDD] [BD-RE] [BD-R] [BD-V] [RAM] [-R] [-R]DL] [-RW] [DVD-V] [CD] [SD] [USB] [RAM AVCREC ] [-R AVCREC ] [-R]DL AVCREC ] [RAM VR ][-R VR ] [-R]DL VR

More information

hands_on_4.PDF

hands_on_4.PDF PHPMySQL 4 PC LAN 2 () () SQLDBMS DBMS DataBase Management System mysql DBMS SQL Structured Query Language SQL DBMS 3 DBMS DataBase Management System B Table 3 Table 2 Table 1 a 1 a 2 a 3 A SQLStructured

More information

[user@linux tmp]$ tar xzvf utvpn-src-unix-v100-7092-beta-2010.06.25.tar.gz [user@linux tmp]$ cd utvpn-unix-v100-7092-beta [user@linux utvpn-unix-v100-7092-beta]$ ls License-ja.txt configure makefiles src

More information

07_経営論集2010 小松先生.indd

07_経営論集2010 小松先生.indd 19 1 2009 105 123 Web Web Web Web World Wide Web WWW OS 1990 WWW Web HTML CSS JavaScript Web 1 WWW 2 Web Web 3 Web 4 HTML5 5 Web Web 3 1970 WWW HTML Web WWW WWW WWW WWW WWW 105 Web WWW 2 Web 1 1 NTT NTT

More information

Web

Web Web 1 1 1........................... 1 2 Web...................... 1 3...................... 3 4........................ 4 5........................... 5 i............................ 5 ii iii..........................

More information

-5 DMP-BV300 μ μ l μ l l +- l l j j j l l l l l l l l l l l l l Ë l l l l l l l l l l l l l l l l l l l l l l l BD DVD CD SD USB 2 ALL 1 2 4 l l DETACH ATTACH RELEASE DETACH ATTACH DETACH ATTACH RELEASE

More information

演習室の PC のハードディスクには演習で作成したデータは保管できません 各 PC の ネットワーク接続 ショートカットからメディア情報センターのサーバーにアクセスしてください (Z ドライブとして使用できます ) 講義で使うフォルダ 2/23

演習室の PC のハードディスクには演習で作成したデータは保管できません 各 PC の ネットワーク接続 ショートカットからメディア情報センターのサーバーにアクセスしてください (Z ドライブとして使用できます ) 講義で使うフォルダ 2/23 Web データ管理 CGI (3 章 ) 2011/11/30( 水 ) 1/23 演習室の PC のハードディスクには演習で作成したデータは保管できません 各 PC の ネットワーク接続 ショートカットからメディア情報センターのサーバーにアクセスしてください (Z ドライブとして使用できます ) 講義で使うフォルダ 2/23 CGI とは Common Gateway Interface の略 通常のページでは

More information

1

1 1 2 3 4 確認しよう 今回のサンプルプログラムにアクセスしてみましょう 1. デスクトップ上のフォルダをクリックし /var/www/html に example1.html と example2.php ファイルがあることを確認します 2. ブラウザを起動し 次の URL にアクセスします http://localhost/example1.html 3. 自分の手を選択して じゃんけんぽん

More information

untitled

untitled 2005 HP -1-2005 8 29 30 HP 1 ( ) 1. Web 2. HTML HTML 1 PDF HTML 1 Web HTML http://www.media.ritsumei.ac.jp/kodais2005 2 2.1 WWW HTML Hyper Text Markup Language) HTML Web HTML Internet Explorer http://www.ritsumei.ac.jp

More information

C G I 入 門 講 座

C G I 入 門 講 座 Apache VsftpdPerl tsuyoshi@t-ohhashi JAPET NTT Linux 1 FTP CGI VSFTP Apache Perl Perl CGI Apache CGI CGI Perl CGI CGI PHP CGI CGI 2 Windows CGI EUC Windows Windows CGI 64KB Windows CGI ( ) Windows TeraPad

More information

VQT3G14-2 DMR-BR585 μ μ μ VQT3G14.book 3 ページ 2010年10月1日 金曜日 午前10時29分 ご案内 3 本書では 本機の操作方法を説明しています 別冊の 取扱説明書 準備編 や かんたん操作ガイド もあわせてご覧ください 連携機器情報などの詳しい情報は 当社ホームページ 本機を使用していただくための サポート情報を掲載しています 接続機器に合わせた 接続方法

More information

2009 Web B012-1

2009 Web B012-1 2009 Web 2010 2 1 5108B012-1 1 4 1.1....................................... 4 1.2................................... 4 2 Web 5 2.1 Web............................... 5 2.2 Web.................................

More information

( )

( ) 2016 13H018 1 1 2 2 3 4 3.1............................................... 4 3.2 ( ).................................... 5 4 6 4.1........................................ 6 4.2..................... 6 5

More information

VQT3B86-4 DMP-HV200 DMP-HV150 μ μ l μ

VQT3B86-4 DMP-HV200 DMP-HV150 μ μ l μ -4 DMP-HV200 DMP-HV150 μ μ l μ [DMP-HV200] l [DMP-HV200] l +- l l j j j[dmp-hv200] l l l [DMP-HV200] l l l l [DMP-HV200] l [DMP-HV200] l l [DMP-HV200] l [DMP-HV200] [DMP-HV150] l l Ë l l l l l l l l l

More information

μ μ DMR-BZT700 DMR-BZT600 μ TM VQT3C03-2B ! ! l l l [HDD] [BD-RE] [BD-R] [DVD-V] [BD-V] [RAM] [CD] [SD] [-R] [USB] [-RW] [RAM AVCREC ] [-R AVCREC ] [RAM VR ][-R VR ] [-RW VR ] [-R V ] [-RW V ] [DVD-V]

More information

untitled

untitled VQT3B82-1 DMP-BDT110 μ μ μ 2 VQT3B82 ÇÕÇ¹Ç Ç +- VQT3B82 3 4 VQT3B82 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ij SD 1 2 3 4 5 6 7 8 Í VQT3B82 5 BD DVD CD SD USB 6 VQT3B82 2 ALL 1 2 4 VQT3B82 7

More information

演習室の PC のハードディスクには演習で作成したデータは保管できません 各 PC の ネットワーク接続 ショートカットからメディア情報センターのサーバーにアクセスしてください (Z ドライブとして使用できます ) Web プログラミング 1 CGI (3 章 ) 2012/6/12( 水 ) 講義

演習室の PC のハードディスクには演習で作成したデータは保管できません 各 PC の ネットワーク接続 ショートカットからメディア情報センターのサーバーにアクセスしてください (Z ドライブとして使用できます ) Web プログラミング 1 CGI (3 章 ) 2012/6/12( 水 ) 講義 演習室の PC のハードディスクには演習で作成したデータは保管できません 各 PC の ネットワーク接続 ショートカットからメディア情報センターのサーバーにアクセスしてください (Z ドライブとして使用できます ) Web プログラミング 1 CGI (3 章 ) 2012/6/12( 水 ) 講義で使うフォルダ 1/23 2/23 CGI とは Common Gateway Interface の略

More information

slide5.pptx

slide5.pptx ソフトウェア工学入門 第 5 回コマンド作成 1 head コマンド作成 1 早速ですが 次のプログラムを head.c という名前で作成してください #include #include static void do_head(file *f, long nlines); int main(int argc, char *argv[]) { if (argc!=

More information

0序文‐1章.indd

0序文‐1章.indd 本 書 に 記 載 されたURL 等 は 執 筆 時 点 でのものであり 予 告 なく 変 更 される 場 合 があります 本 書 の 使 用 ( 本 書 のとおりに 操 作 を 行 う 場 合 を 含 む)により 万 一 直 接 的 間 接 的 に 損 害 が 発 生 し ても 出 版 社 および 著 者 は 一 切 の 責 任 を 負 いかねますので あらかじめご 了 承 下 さい Microsoft

More information

II ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 D

II ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 D II 8 2003 11 12 1 6 ( ) prog8-1.c s1542h017%./prog8-1 1 => 35 Hiroshi 2 => 23 Koji 3 => 67 Satoshi 4 => 87 Junko 5 => 64 Ichiro 6 => 89 Mari 7 => 73 Daisuke 8 =>. 73 Daisuke 35 Hiroshi 64 Ichiro 87 Junko

More information

untitled

untitled 25 10 12 11 24 (1) 14 (2) 26 10 44 (3) (4) (5) 27 10 68 (6) (7) (8) 25 10 ( ) (1) (2) (3) ) city.yokohama.lg.jp city.yokohama.jp WEB WEB WEB WEB WEB WEB 1 25 10 WEB WEB (1) (2) (3) (4) 25 10 (1) WEB (2)

More information

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 JavaScript (2) 1 JavaScript 1.! 1. 2. 3. DOM 4. 2. 3. Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 (1) var a; a = 8; a = 3 + 4; a = 8 3; a = 8 * 2; a = 8 / 2; a = 8 % 3; 1 a++; ++a; (++

More information

情報システム設計論II ユーザインタフェース(1)

情報システム設計論II ユーザインタフェース(1) 中村研究室ゼミ CGI と PHP 中村聡史 1 本日の内容 アクセスのたびに動作が変わるページの実現 CGI (Common Gateway Interface) PHP 2 3 動的なコンテンツ アクセスするたびに結果が変わったり, 問い合わせをするようなウェブページをどのようにして実現するか? ウェブ掲示板やウェブアンケート アクセスカウンター ウェブログ 検索サービスや物販サービス などなど

More information

untitled

untitled TZ-BDT910M TZ-BDT910F TZ-BDT910P μ μ μ μ TM VQT3F51-1 l l l [HDD] [BD-RE] [BD-R] [DVD-V] [BD-V] [RAM] [CD] [SD] [-R] [USB] [-RW] [RAM AVCREC ] [-R AVCREC ] [RAM VR ][-R VR ] [-RW VR ] [-R V ] [-RW

More information

PFS-Readme

PFS-Readme Cell Storage Service : Storage Service that has the high reliability and the high availability by Paxos consensus algorithm. CSS-Readme.txt : This manual describes the process to make the envirornments

More information

Microsoft PowerPoint - 04WWWとHTML.pptx

Microsoft PowerPoint - 04WWWとHTML.pptx 船舶海洋情報学 九州大学工学府海洋システム工学専攻講義資料担当 : 木村 04. WWW と HTML WWW(World Wide Web) インターネットの情報をハイパーテキスト形式で参照できる情報提供システム HTML などのコンテンツを HTTP プロトコルで転送 インターネット クライアント PC WWW の情報を画面に表示するクライアントソフトウエア :WEB ブラウザ Internet

More information

wide94.dvi

wide94.dvi 14 WWW 397 1 NIR-TF UUCP ftp telnet ( ) WIDE Networked Information Retrieval( NIR ) vat(visual Audio Tool) nv(netvedeo) CERN WWW(World Wide Web) WIDE ISODE WIDE project WWW WWW 399 400 1994 WIDE 1 WIDE

More information

PowerPoint Presentation

PowerPoint Presentation プログラミング Java III 第 4 回 : サーブレットの HTTP Request の処理 Ivan Tanev 講義の構造 1. サーブレットの HTTP Request の処理 2. 演習 2 第 3 回のまとめ Internet Explorer のアドレス バー : http://isd-si.doshisha.ac.jp/teaching/programming_3/xxxxxxxx/lecture3_form1.html

More information

double float

double float 2015 3 13 1 2 2 3 2.1.......................... 3 2.2............................. 3 3 4 3.1............................... 4 3.2 double float......................... 5 3.3 main.......................

More information

エレクトーンのお客様向けiPhone/iPad接続マニュアル

エレクトーンのお客様向けiPhone/iPad接続マニュアル / JA 1 2 3 4 USB TO DEVICE USB TO DEVICE USB TO DEVICE 5 USB TO HOST USB TO HOST USB TO HOST i-ux1 6 7 i-ux1 USB TO HOST i-mx1 OUT IN IN OUT OUT IN OUT IN i-mx1 OUT IN IN OUT OUT IN OUT IN USB TO DEVICE

More information

iPhone/iPad接続マニュアル

iPhone/iPad接続マニュアル / JA 2 3 USB 4 USB USB i-ux1 USB i-ux1 5 6 i-mx1 THRU i-mx1 THRU 7 USB THRU 1 2 3 4 1 2 3 4 5 8 1 1 9 2 1 2 10 1 2 2 6 7 11 1 2 3 4 5 6 7 8 12 1 2 3 4 5 6 13 14 15 WPA Supplicant Copyright 2003-2009, Jouni

More information

Condition DAQ condition condition 2 3 XML key value

Condition DAQ condition condition 2 3 XML key value Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................

More information

第 7 回の内容 動的な Web サイト フォーム Web システムの構成

第 7 回の内容 動的な Web サイト フォーム Web システムの構成 第 7 回の内容 動的な Web サイト フォーム Web システムの構成 動的な Web サイト 静的なリソース ファイルシステムのパス / URI のパス a 公開ディレクトリ / b b GET /b HTTP/1.1 c c e d /a/b を送り返す d e 静的なリソース ファイルシステムのパス / / URI のパス f b c e GET /g/e HTTP/1.1 d /f/e

More information

インターネット接続ガイド v110

インターネット接続ガイド v110 1 2 1 2 3 3 4 5 6 4 7 8 5 1 2 3 6 4 5 6 7 7 8 8 9 9 10 11 12 10 13 14 11 1 2 12 3 4 13 5 6 7 8 14 1 2 3 4 < > 15 5 6 16 7 8 9 10 17 18 1 2 3 19 1 2 3 4 20 U.R.G., Pro Audio & Digital Musical Instrument

More information

第3回_416.ppt

第3回_416.ppt 3 3 2010 4 IPA Web http://www.ipa.go.jp/security/awareness/vendor/programming Copyright 2010 IPA 1 3-1 3-1-1 SQL #1 3-1-2 SQL #2 3-1-3 3-1-4 3-2 3-2-1 #2 3-2-2 #1 3-2-3 HTTP 3-3 3-3-1 3-3-2 Copyright 2010

More information

SVG資料第10回目(その2) Ajaxによる同期通信と非同期通信の違い

SVG資料第10回目(その2) Ajaxによる同期通信と非同期通信の違い 10 ( SVG 10 ( Ajax Ajax I(SVG) 2017/6/27 10 ( Ajax 10 ( Ajax 100 10 HTML 1 2 3 4 5 6

More information

(search: ) [1] ( ) 2 (linear search) (sequential search) 1

(search: ) [1] ( ) 2 (linear search) (sequential search) 1 2005 11 14 1 1.1 2 1.2 (search:) [1] () 2 (linear search) (sequential search) 1 2.1 2.1.1 List 2-1(p.37) 1 1 13 n

More information

1 1 1.......................... 1 2........................ 2 2 3 1.................. 3 2.......................... 5 3........................... 6 4

1 1 1.......................... 1 2........................ 2 2 3 1.................. 3 2.......................... 5 3........................... 6 4 1 1 1.......................... 1 2........................ 2 2 3 1.................. 3 2.......................... 5 3........................... 6 4........................ 7 3 Ajax 8 1...........................

More information

<4D F736F F D A957A A A8FEE95F18F88979D DEC90AC E646F63>

<4D F736F F D A957A A A8FEE95F18F88979D DEC90AC E646F63> 情報処理 C (P.1) 情報処理 C (2011 年度 ) ホームページの作成 http://open.shonan.bunkyo.ac.jp/~ohtan/ テキストエディタ ( メモ帳 TeraPad など ) でHTMLファイルを作成する HTML(Hyper Text Markup Language ) ホームページを記述するための言語のこと テキストエディタの起動 (TeraPad の場合

More information

1 1 1.......................... 1 2........................... 1 3 CSS CSS.................... 2 4........................... 3 2 4 1................

1 1 1.......................... 1 2........................... 1 3 CSS CSS.................... 2 4........................... 3 2 4 1................ HTML 1 1 1.......................... 1 2........................... 1 3 CSS CSS.................... 2 4........................... 3 2 4 1................ 4 2..................... 6 3.....................

More information

■新聞記事

■新聞記事 情報処理 C (P.1) 情報処理 C ホームページ作成入門 テキストエディタ ( メモ帳 TeraPad など ) でHTMLファイルを作成する HTML(Hyper Text Markup Language ) ホームページを記述するための言語のこと テキストエディタの起動 (TeraPad の場合 ) [ スタート ]-[ プログラム ]-[ テキストエディタ ]-[TeraPad] をクリック

More information

soturon2013

soturon2013 4.4. CGI, CGI Web. UNIX, UNIX Windows. UNIX CGI. i ( ). mi- http://www.mimikaki.net/ 67 (mi- ),mi-, http://ugawalab.miyakyo-u.ac.jp/j3/chika/wari.cgi.txt http://ugawalab.miyakyo-u.ac.jp/j3/chika/wari.cgi.txt,.

More information

1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2.....................

1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2..................... CSS 0348085 1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2..................... 3 3........................... 5 3 CSS

More information

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 XHTML DOM JavaScript 2 2008 7 1 1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 2.1.2 HTML.........................

More information

WEB DB PRESS Vol.1 65

WEB DB PRESS Vol.1 65 http://www.fastcgi.com/ http://perl.apache.org/ 64 WEB DB PRESS Vol.1 WEB DB PRESS Vol.1 65 Powered by mod_perl, Apache & MySQL my $input; my %form; read STDIN, $input, $ENV{'CONTENT_LENGTH'}; foreach

More information

Microsoft Word - D JP.docx

Microsoft Word - D JP.docx Application Service Gateway Thunder/AX Series vthunder ライセンスキー インストール 手順 1 1.... 3 2. vthunder... 3 3. ACOS... 3 4. ID... 5 5.... 8 6.... 8 61... 8 62 GUI... 10 2 1. 概要 2. vthunder へのアクセス 方法 SSHHTTPSvThunder

More information

1 1 1......................... 1 2.......................... 2 3.................... 2 4...................... 3 2 4 1....... 4 2........................ 7 3................... 8 3 12 1...........................

More information

2

2 http://msyk.net/im Develop Simply, Realize Conceived 1 2 3 4 5 6 7 8 9 10 11 Page File HTML Referencing with "SCRIPT" tag Call the templating method Definition

More information

untitled

untitled 2007 IT G Google Map API WEB2.0 2007 8 23 GoogleMapAPI GoogleMapAPI Google Web URL XHTML JavaScript GoogleMAP LHACA FFFTP TeraPad Haruhiro Unno Japan Electronics College 1 GoogleMapAPI Web Google GMail

More information

.....

..... Peace & Piece Version1.0Peace & Piece 2011/12/17 ..... A-1 CV B-1 C-1 D-1 E-1 F-1 Web G-1 H-1 I-1 J-1 K-1 L-1 M-1 FAQ B-2 D-2 E-2 F-2 H-2 D-3 F-3 CMS () Web Web Web 75 85 Z Web alt SEO SEO Web

More information

実験 5 CGI プログラミング 1 目的 動的にWebページを作成する手法の一つであるCGIについてプログラミングを通じて基本的な仕組みを学ぶ 2 実験 実験 1 Webサーバの設定確認と起動 (1)/etc/httpd/conf にある httpd.conf ファイルの cgi-bin に関する

実験 5 CGI プログラミング 1 目的 動的にWebページを作成する手法の一つであるCGIについてプログラミングを通じて基本的な仕組みを学ぶ 2 実験 実験 1 Webサーバの設定確認と起動 (1)/etc/httpd/conf にある httpd.conf ファイルの cgi-bin に関する 実験 5 CGI プログラミング 1 目的 動的にWebページを作成する手法の一つであるCGIについてプログラミングを通じて基本的な仕組みを学ぶ 2 実験 実験 1 Webサーバの設定確認と起動 (1)/etc/httpd/conf にある httpd.conf ファイルの cgi-bin に関する次の項目を調べよ このとき CGIプログラムを置く場所 ( CGI 実行ディレクトリ) と そこに置いたCGIプログラムが呼び出されるURLを確認せよ

More information

CONTENTS 0 /JSP 13 0.1 Web 14 1 HTML Web 21 1.1 Web HTML 22 1.2 HTML 27 1.3 Web 33 1.4 HTML 43 1.5 46 1.6 47 1.7 48 2 Web 51 2.1 Web 52 2.2 Web 54 2.3 Web 59 2.4 65 2.5 68 2.6 75 2.7 76 2.8 77 3 81 3.1

More information

インターネット技術特論 CGI 動的文書生成 C:CGI による動的文書生成 (C 言語 ) 山口実靖 課題 ( ろ ) 本学 Web サーバに自作 CGI プログラムを公開し, その URL とプログラムをメー

インターネット技術特論 CGI 動的文書生成 C:CGI による動的文書生成 (C 言語 ) 山口実靖   課題 ( ろ ) 本学 Web サーバに自作 CGI プログラムを公開し, その URL とプログラムをメー インターネット技術特論 CGI 動的文書生成 C:CGI による動的文書生成 (C 言語 ) 山口実靖 http://www.ns.kogakuin.ac.jp/~ct13140/inet/ 課題 ( ろ ) 本学 Web サーバに自作 CGI プログラムを公開し, その URL とプログラムをメールにて提出. 宛先 "ct13140@ns.kogakuin.ac.jp" メールの件名 (Subject:)

More information

Network Computing の基礎

Network Computing の基礎 CSS Cascading Style Sheets Cascading = Style Sheets = CSS WEB HTML CSS 2 HTML h1 p CSS 3 CSS CSS HTML sample1.html CSS HTML sample2.html CSS CSS sample2.css CSS

More information

インターネットマガジン1996年3月号―INTERNET magazine No.14

インターネットマガジン1996年3月号―INTERNET magazine No.14 Common Gateway Interface +SSI j 164 INTERNET magazine 1996/3 INTERNET magazine 1996/3 165 Common Gateway Interface 5 2 3 1 2 3 4 1 4 j Common Gateway Interface j j j j 166 INTERNET magazine 1996/3 INTERNET

More information

! "#$%&'()*+,-. STUV WXYZ[\]^_`abcdefghijklmno pqrstuvwxyz{ }~ ƒ ˆ Š Œ Ž š œ žÿ ª«±²³ µ ¹º»¼½¾ ÀÁÂÃÄ ÅÆÇÈÉÊËÌÍÎÏÐ

! #$%&'()*+,-. STUV WXYZ[\]^_`abcdefghijklmno pqrstuvwxyz{ }~ ƒ ˆ Š Œ Ž š œ žÿ ª«±²³ µ ¹º»¼½¾ ÀÁÂÃÄ ÅÆÇÈÉÊËÌÍÎÏÐ 6 1 6 (1) (2) HTML (3) PDF Copy&Paste 1 Web 1 Web Web 1 Web HTML ! "#$%&'()*+,-. /0123456789:;?@ABCDEFGHIJKLMNOPQR STUV WXYZ[\]^_`abcdefghijklmno pqrstuvwxyz{ }~ ƒ ˆ Š Œ Ž š œ žÿ ª«±²³ µ ¹º»¼½¾ ÀÁÂÃÄ

More information

Webデザイン論

Webデザイン論 2008 年度松山大学経営学部開講科目 情報コース特殊講義 Web デザイン論 檀裕也 (dan@cc.matsuyama-u.ac.jp) http://www.cc.matsuyama-u.ac.jp/~dan/ 出席確認 受講管理システム AMUSE を使って 本日の出席登録をせよ 学籍番号とパスワードを入力するだけでよい : http://davinci.cc.matsuyama-u.ac.jp/~dan/amuse/

More information

2

2 storetool 2 3 4 1 storetool 1-1 6 1-2 1 7 8 1-3 1 9 1-4 10 1 11 1-5 12 1-6 1 13 14 2 storetool 2-1 16 2 17 2-2 1. 2. 3. 4. 5. 18 6. 7. 2 19 20 3 storetool 3-1-1 22 1. 3 2. 1. 2. 23 1. 2. 24 3 25 1. 2.

More information

Chapter 1 1-1 2

Chapter 1 1-1 2 Chapter 1 1-1 2 create table ( date, weather ); create table ( date, ); 1 weather, 2 weather, 3 weather, : : 31 weather -- 1 -- 2 -- 3 -- 31 create table ( date, ); weather[] -- 3 Chapter 1 weather[] create

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 3 Webデザイナーに求められる知識 優秀な HTML, CSS, 画像編集, JavaScript, jquery, XML, 色 彩理論, LL, データベース, SEO, SMO, EFO, コピーラ イティング, テキストライティング, イラストレー ション, Flash, ディレクション能力, プロジェクトマ ネジメント, Logo作成, Typography, サーバ管理, PHP, Perl,

More information

Microsoft PowerPoint - Lecture_2

Microsoft PowerPoint - Lecture_2 プログラミング Java III 第 2 回 :WebForm および サーブレット入門 Ivan Tanev 講義の構造 1. ダイナミックWebコンテンツとサーブレット 2.Webフォーム 3. 演習 2 1. ダイナミック Web コンテンツとサーブレット 3 1. ダイナミック Web コンテンツとサーブレット Internet Response: HTML テキスト ユーザー 4 1. ダイナミック

More information

Web±ÜÍ÷¤Î³Ú¤·¤µ¤ò¹â¤á¤ëWeb¥Ú¡¼¥¸²ÄÄ°²½¥·¥¹¥Æ¥à

Web±ÜÍ÷¤Î³Ú¤·¤µ¤ò¹â¤á¤ëWeb¥Ú¡¼¥¸²ÄÄ°²½¥·¥¹¥Æ¥à Web Web 2 3 1 PC, Web, Web. Web,., Web., Web HTML, HTML., Web, Web.,,., Web, Web., Web, Web., Web, Web. 2 1 6 1.1.................................................. 6 1.2.................................................

More information

Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheet

Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheet 2012 Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheets CSS2 CSS3 Web Web2.0 Web3.0 Web IT Web Homepage

More information

Web情報システム 第1章~第5章

Web情報システム 第1章~第5章 Web 情報システム マルチメディア情報通信ソフトウェア 第 1 章 ~ 第 4 章 1 Web 情報システム マルチメディア情報の流通 Web 情報システム概論 デジタルメディアの特徴 デジタルメディアの記述 HTML (Hyper Text Markup Language) CSS (Cascading style sheet) デジタルメディアの制御 JavaScript コンピュータとネットワークの基礎

More information

PowerPoint Presentation

PowerPoint Presentation HTML5 Level.1 Markup Professional HTML5 Level.2 Application Development Professional http://www.html5exam.jp/ @html5cert https://www.facebook.com/html5exam

More information

O(N) ( ) log 2 N

O(N) ( ) log 2 N 2005 11 21 1 1.1 2 O(N) () log 2 N 1.2 2 1 List 3-1 List 3-3 List 3-4? 3 3.1 3.1.1 List 2-1(p.70) 1 1 10 1 3.1.2 List 3-1(p.70-71) 1 1 2 1 2 2 1: 1 3 3.1.3 1 List 3-1(p.70-71) 2 #include stdlib.h

More information

_IMv2.key

_IMv2.key 飯島基 文 customb2b@me.com $ ssh ladmin@im.example.com $ cd /Library/Server/Web/Data/Sites/Default/ $ git clone https://github.com/msyk/inter-mediator.git

More information

新版明解C言語 実践編

新版明解C言語 実践編 2 List - "max.h" a, b max List - max "max.h" #define max(a, b) ((a) > (b)? (a) : (b)) max List -2 List -2 max #include "max.h" int x, y; printf("x"); printf("y"); scanf("%d", &x); scanf("%d", &y); printf("max(x,

More information

2 / 16 HTML=HyperText Markup Language( ハイパーテキストマークアップランゲージ ) ブラウザ (Chrome) での表示 ソースの表示 ( メモ帳 /TeraPad) HTML <========= =========>

2 / 16 HTML=HyperText Markup Language( ハイパーテキストマークアップランゲージ ) ブラウザ (Chrome) での表示 ソースの表示 ( メモ帳 /TeraPad) HTML <========= =========> 1 / 16 第 11 回セミナー / 全 12 (2014/8/28) HP の基本的構造の理解とページ構成の工夫 これだけはマスターしておきたい HTML 厳選タグ迷子を生まないためのリンクの配置 ( 読ませる工夫 ) Web 作成の基本ツール Web ブラウザ Chrome FireFox Opera (Internet Explorer) Chrome Firefox Opera https://www.google.com/intl/ja/chrome/browser/features.html

More information

PostgreSQL

PostgreSQL PostgreSQL for IBM i 導入ガイド 目次 1. 事前準備 2. IBM i V5R4 及び V6R1 での導入方法 3. POSTGRES ユーザのプロファイルを作成する 4. PostgreSQL の導入 5. PostgreSQL の開始 6. PostgreSQL の確認 7. PostgreSQL の停止 8. IBM i V7R1 での導入方法 9. PHP のサンプルコード

More information

5-5_arai_JPNICSecSemi_XssCsrf_CM_ PDF

5-5_arai_JPNICSecSemi_XssCsrf_CM_ PDF XSS + CSRF JPNIC JPCERT/CC 2005 Web 2005 10 6 IS Copyright 2005 SECOM Co., Ltd. All rights reserved. 1 XSS + CSRF Web Web Web (Web, DB, ) Copyright 2005 SECOM Co., Ltd. All rights reserved. 2 SQL XSS Copyright

More information

インターネットマガジン2003年3月号―INTERNET magazine No.98

インターネットマガジン2003年3月号―INTERNET magazine No.98 1 http://www.cpan.org/ http://search.cpan.org/ http://www.cpan.org/ open(input,'in-file'); while(){ push (input,$_); } close(input); @output = sort @input; open(output,'>out-file'); forearch $i

More information

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener 22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Generator PF-Web for Constructing Web Applications. Tomohiro

More information

B 20 Web

B 20 Web B 20 Web 0753018 21 1 29 1 1 6 2 8 3 UI 10 3.1........................ 10 3.2 Web............ 11 3.3......... 12 4 UI 14 4.1 Web....................... 15 4.2 Web........... 16 4.3 Web....................

More information

Microsoft Word - C.....u.K...doc

Microsoft Word - C.....u.K...doc C uwêííôöðöõ Ð C ÔÖÐÖÕ ÐÊÉÌÊ C ÔÖÐÖÕÊ C ÔÖÐÖÕÊ Ç Ê Æ ~ if eíè ~ for ÒÑÒ ÌÆÊÉÉÊ ~ switch ÉeÍÈ ~ while ÒÑÒ ÊÍÍÔÖÐÖÕÊ ~ 1 C ÔÖÐÖÕ ÐÊÉÌÊ uê~ ÏÒÏÑ Ð ÓÏÖ CUI Ô ÑÊ ÏÒÏÑ ÔÖÐÖÕÎ d ÈÍÉÇÊ ÆÒ Ö ÒÐÑÒ ÊÔÎÏÖÎ d ÉÇÍÊ

More information

スライド タイトルなし

スライド タイトルなし 御中 ドキュメント種 : お得意様名 : システム名 : デモ説明資料資料 EditionFlex DEMO 第一版平成 22 年 11 月第二版平成 22 年 12 月 11 日 15 日 Page - 1 1 DEMO1 Edition Flex エディター ( 編集画面 ) の呼出 DEMO1 では RESOLOGIC の Web サーバー上のデモメニューから まったく別のクラウド上にある Flex

More information

</ul> (XXX ) 15 ( )15 35 (XXX ) 15 ( ) [4] HTML HTML HTML HTML 1. <!--- CONTENTS_TITLE_TABLE ---> <b><font size=+1>xxx </font></b> <sm

</ul> (XXX ) 15 ( )15 35 (XXX ) 15 ( ) [4] HTML HTML HTML HTML 1. <!--- CONTENTS_TITLE_TABLE ---> <b><font size=+1>xxx </font></b> <sm 1. 1 2006 9 5 AWK HTML 2 1 [4] AWK Yahoo! : http://headlines.yahoo.co.jp/hl HTML HTML [4] HTML HTML ( ) HTML 3 2 Yahoo! Yahoo! ( ) (XXX ) - 15 ( )15 35

More information

r07.dvi

r07.dvi 19 7 ( ) 2019.4.20 1 1.1 (data structure ( (dynamic data structure 1 malloc C free C (garbage collection GC C GC(conservative GC 2 1.2 data next p 3 5 7 9 p 3 5 7 9 p 3 5 7 9 1 1: (single linked list 1

More information