<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://cs.indstate.edu/web/index.php?action=history&amp;feed=atom&amp;title=CS_479_Web_Programming_II</id>
	<title>CS 479 Web Programming II - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://cs.indstate.edu/web/index.php?action=history&amp;feed=atom&amp;title=CS_479_Web_Programming_II"/>
	<link rel="alternate" type="text/html" href="https://cs.indstate.edu/web/index.php?title=CS_479_Web_Programming_II&amp;action=history"/>
	<updated>2026-04-14T21:56:18Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://cs.indstate.edu/web/index.php?title=CS_479_Web_Programming_II&amp;diff=105&amp;oldid=prev</id>
		<title>Jkinne: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://cs.indstate.edu/web/index.php?title=CS_479_Web_Programming_II&amp;diff=105&amp;oldid=prev"/>
		<updated>2025-08-17T13:22:12Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 13:22, 17 August 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key wiki2:diff:1.41:old-104:rev-105 --&gt;
&lt;/table&gt;</summary>
		<author><name>Jkinne</name></author>
	</entry>
	<entry>
		<id>https://cs.indstate.edu/web/index.php?title=CS_479_Web_Programming_II&amp;diff=104&amp;oldid=prev</id>
		<title>wiki_previous&gt;Znoble1: Created page with &quot;== Catalog Description == * Advanced programming for the World Wide Web and the Internet. This course includes client and server side programming with HTML/CSS/ECMAScript on t...&quot;</title>
		<link rel="alternate" type="text/html" href="https://cs.indstate.edu/web/index.php?title=CS_479_Web_Programming_II&amp;diff=104&amp;oldid=prev"/>
		<updated>2021-05-18T13:18:58Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;== Catalog Description == * Advanced programming for the World Wide Web and the Internet. This course includes client and server side programming with HTML/CSS/ECMAScript on t...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Catalog Description ==&lt;br /&gt;
* Advanced programming for the World Wide Web and the Internet. This course includes client and server side programming with HTML/CSS/ECMAScript on the client side and PHP/mysqli scripting on the server. As well as some server side configuration using the Apache web server.  Prerequisite - C or better in CS 170 and CS 201.&lt;br /&gt;
&lt;br /&gt;
== Prerequisites ==&lt;br /&gt;
* Basic understanding of HTML, CSS and JavaScript (ECMAScript) in the browser&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Standard Content ==&lt;br /&gt;
===Course Outline ===&lt;br /&gt;
* Review of CS170 concepts:&lt;br /&gt;
* Basic HTML: basic formatting, lists, tables&lt;br /&gt;
* Extensive HTML forms review&lt;br /&gt;
* Basic CSS: selectors, box model, colors, fonts&lt;br /&gt;
* JavaScript/ECMAScript review: basic data-types, variables and scope, functions, conditionals, loops.&lt;br /&gt;
* The DOM, document and window objects, events and the event object&lt;br /&gt;
* PHP Scripting:&lt;br /&gt;
* Output&lt;br /&gt;
* Data-types and scoping&lt;br /&gt;
* Super-Globals: $_GET, $_POST, etc.&lt;br /&gt;
* Language features: functions, conditionals, loops: while, for, foreach&lt;br /&gt;
* MySQL/MariaDB:&lt;br /&gt;
* Databases and tables&lt;br /&gt;
* Data-types&lt;br /&gt;
* SQL syntax: creating table, insert, update, delete and select&lt;br /&gt;
* The PHP Mysqli interface (switch to PDO?)&lt;br /&gt;
* simple vs. prepared statements&lt;br /&gt;
* Security, escaping strings, input validation, etc&lt;br /&gt;
* AJAX: Asynchronous client/server pages via XMLHttpRequest and JSON encoded data.&lt;br /&gt;
* HTTP authentication schemes including HTTP auth, PHP sessions, creating long lived sessions using sessions cookies coupled with a user and sessions tables, password hashing, SSL/TLS security&lt;br /&gt;
* WebSockets (time permitting)&lt;br /&gt;
&lt;br /&gt;
===Learning Outcomes===&lt;br /&gt;
* HTML forms, client side ECMAScript-ing and server side PHP scripting and MySQL. Understanding of basic web security concepts.&lt;br /&gt;
&lt;br /&gt;
===Important Assignments and/or Exam Questions===&lt;br /&gt;
* CS170 style review problems:&lt;br /&gt;
* Creating static HTML forms and submitting to a PHP form handler&lt;br /&gt;
* Dynamic PHP pages using $_GET variables&lt;br /&gt;
* Simple ECMAScript dynamic server pages (PHP generated server side data requested via XMLHttpRequest() on the client.)&lt;br /&gt;
* Creating tables and inserting data into a MySQL database via PHP from files / web forms.&lt;br /&gt;
* Paginated display of a database w/ column sorting via server side PHP/Mysqli&lt;br /&gt;
* Chat client/server (time permitting)&lt;br /&gt;
&lt;br /&gt;
=== Standard resources ===&lt;br /&gt;
* W3Schools, Mozilla Developer Network (MDN)&lt;br /&gt;
* PHP.net, Mariadb.org, etc.&lt;/div&gt;</summary>
		<author><name>wiki_previous&gt;Znoble1</name></author>
	</entry>
</feed>