205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop

Size: px
Start display at page:

Download "205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop"

Transcription

1 205CDE Developing the Modern Web Assignment 2 Server Side Scripting Scenario D: Bookshop Introduction This assignment was written using PHP programming language for interactions with the website and the database. To work with database, mysql interface was used. Together this assignment had several tasks to achieve such as producing 3NF database schema, upload data web forms. Website Design Even though for this assignment improving design is not key thing, this is from where I started. I changed colors of my website for just being more pleasant for the eye. All colors of the website were changed and adjusted. Also header picture was changed as well, as some friends suggested that the text should have fewer effects. Picture of homepage is below. Figure 1: Homepage

2 Validation As my webpage had problems with HTML validation in assignment 1, all pages are successfully validated in assignment two. CSS file is validated as well. This increases client acceptability of the website. Changes To Website Interface Various changes were made during the development process of the website. Firstly, search form was changed from a search bar in every page to separate link to search page in navigation menu. This was done for making a search with separate choices whether to search for authors, title, ISBN or other. Furthermore, a link for log in was moved to navigation menu as well, because I decided to display greeting message for logged in user and navigation to user account in the top right corner of the banner. Database mysql Tables Part of this assignment is to be able to insert data from forms in the website into mysql database and retrieve information from it. For that I had to create all the tables needed for the data of the Second Hand Bookshop. I used five tables: Authors for storing authors of the books. Books for storing all the information related to new added books. Genres for storing genres of the books. ReserveBooks for storing a value whether book is available to reserve or not. Users for storing all the information about the users that created an account in the website. Figure 2: Tables of Second Hand Bookshop Database

3 Authors table have only two values to store: author id and author name. Author id stores a value of the author name; it is also a primary key, which is linked to foreign key in books table, so author name value can be retrieved while using the books table. Figure 3: Authors Table Books table stores many values for identifying and viewing the book in the webpage. Columns stores values as described below: BookID stores an unique book id, which is auto incremented value. AuthorID stores authorid which is a foreign key to authors table to retrieve an author name. Title stores a title of the book. Year stores a year that book was published. GenreID stores unique genreid which is a foreign key to genres table to retrieve a genre for the book. Price stores a price of the book. ISBN10 stores a unique ISBN 10 code of the book. ISBN13 stores a unique ISBN 13 code of the book. Otherinfo stores other information about the book that was entered in the text field in the website. Path stores a url to access the image of the book in the server that user uploaded while inserting new book. UserID - stores unique userid which is a foreign key to users table to retrieve a username for the book. ReserveID stores unique reserveid which is a foreign key to reservebooks table to retrieve a reservation status of the book. ReservedUser stores a username of the user, that reserved this book, uses null value if the book is not reserved. Date timestamp value that stores date and time when the book was uploaded to database.

4 Figure 4: Books Table Genres table is very similar to authors table as it has only two columns as well genre ID and genre name. Genre ID is linked to foreign key in the books table to be able to retrieve genre name for the book display and upload. Figure 5: Genres Table Reserve Books table have two columns as well: unique ID and status. Status column stores a character value of YES or NO which are used to show whether book is available to reserve or no. Reserve ID column is also linked to reserve ID column in the books table as a foreign key.

5 Figure 6: Reserve Books Table Last table that I use is users which store all users that register in the Second Hand Bookshop. Column uses are described as follows: UserID stores an unique user ID that is an auto incremented value. FirstName stores user s first name. LastName stores user s last name. Username stores user s username. Password stores user s password which is encrypted value. Encryption further explained in the PHP code section. stores user s . Addone stores user s address line one. Addtwo stores user s address line two (optional). City stores user s living city. Country stores user s living country. Postcode stores user s post code. Date - timestamp value that stores date and time when the user created account. Figure 7: Users Table

6 Website interaction with database PHP Firstly, I had to recreate all the current HTML pages to PHP as php file extension also approves html code, so I was able to write both php and html codes in same file. Homepage of the website just shows all the books ordered by alphabet. There was a plan to make it so it would view books in the most viewed order, but I lacked time of implementing this. Every book is shown in a field set with information about book, price; author and title in the legend as a link, which directs user to product page, which shows the book user selected. It displays all the information available about the book. Users can also bookmark this page as the page retrieves information using GET variable. Moreover, users can reserve the books for buy. If the book is reserved successfully, user will receive an confirmation. However, only registered users can reserve books. Figure 8: Product Page (Available to reserve) Product page changes if user reserves a book: reserve button disappears and available to reserve line changes to NO.

7 Figure 9: Product Page (Not available to reserve) Browse page is used to browse the entire book database. Users are able to find them by author, year of publish and genre, ascending or descending order. Figure 10: Browse Page When they press a link they are redirected to a catalogue page which displays all the books of the type selected (for example if user browses by author, catalogue will display all the books that the author selected wrote). Page is also available to bookmark as it uses GET variable as well.

8 Figure 11: Catalogue Page After that, when user chooses particular book, they are redirected to the same products page that was mentioned above to display the book. New Books page is not much different than home page, because it displays the books in field sets as well. The only difference is that it displays books starting with the newest one. Figure 12: New Books Page Sell Books page shows the form that is needed to fill in order to insert new book to the system. User must be logged in to upload a book. A message appears if you try to upload without logging in with a link to login page.

9 Figure 13: Sell Books Page, Not logged in. There is multiple drop down menus in this form. They are used to display authors and genres available for books. However, if the user cannot find the desired author or genre they can add a new one using a link near the boxes. They redirect to a new simple page that adds a new desired author or genre in the system. Figure 14: Add New Author Page. Users also can upload an image using the choose file button near the image text. Image is resized and uploaded to the server. However, only jpg extension files are allowed. After a successful book insert into database, a message will appear that the book was added successfully.

10 Contact us form displays the address and to contact me. There is also an form to send me a message directly from the webpage. A person, who sends a message, has to enter his name, and message in the boxes provided. The entered is also validated using the PHP function. Figure 15: Contact Us Page. Search page has a search form. Searches are done using full text index, so searches are not available through foreign keys. So, a drop down menu is provided to choose, which table to search author, title, genre, ISBN. Figure 16: Search Page.

11 Login page is used as a login form to log in to user account and to reach a register page through a link inside it. To log in, username and password are required to enter. After registration, a password in the database is stored after encrypting it using md5 function. To check if the password is correct, form password is encrypted and compared to encryption stored in the database. This increases security of user information. Figure 17: Login Page. After logging in, page is refreshed automatically. In the top right corner of the banner, user greeting information should appear with a link to user account and a log out button. Figure 18: Login Page (Logged in). Register user page is just a form to complete to register a new user. It is similar to sell books page. Even though it has some differences. Some fields in the form are required and if they are not filled up, message appears that they must be filled up. Furthermore, users cannot choose a username if one already exist.

12 Figure 19: Register Page. My account page displays all the user information. If user wants to change it, there is a link to edit account page where user can change his details. Furthermore, my account page displays all the books that user uploaded and all the books that user reserved. Figure 20: My Account Page (1).

13 Figure 21: My Account Page (2). In the edit account page, the form appears with already filled up information. That is the information that already exists about user. If user wants to change it he should delete the old one, enter new and press Update. Figure 22: Edit Account Page. My account page also has a link to delete an account so if user wants to leave the community, all the information about him will be permanently deleted. After the

14 link is pressed confirmation question appears to make sure if user really want to delete his account. Figure 23: Delete Account Page.

205CDE: Developing the Modern Web. Assignment 1: Designing a Website. Scenario: D Bookshop

205CDE: Developing the Modern Web. Assignment 1: Designing a Website. Scenario: D Bookshop 205CDE: Developing the Modern Web Assignment 1: Designing a Website Scenario: D Bookshop Introduction I decided to make a second hand bookshop website. There are some reasons why I made this choice. Mainly

More information

Client Side Scripting. The Bookshop

Client Side Scripting. The Bookshop Client Side Scripting The Bookshop Introduction This assignment is a part of three assignments related to the bookshop website. Currently design part (using HTML and CSS) and server side script (using

More information

Turn-K ey Manual. The Turn-Key Site Give You The Total Solution Includes: web site, payment processing & shopping cart and more

Turn-K ey Manual. The Turn-Key Site Give You The Total Solution Includes: web site, payment processing & shopping cart and more Turn-K ey Manual The Turn-Key Site Give You The Total Solution Includes: web site, payment processing & shopping cart and more http://www.7 1.com support@global.7 1.com UPDATED 2009-1 11 2-20 Page 1 TABLE

More information

Aspire the new reading list system

Aspire the new reading list system Aspire the new reading list system Getting Started 1. To register to use Aspire email readinglist.lib@sussex.ac.uk. Please include course code and title for each reading list you wish to be able to edit.

More information

Contents. Register...3 Advertiser Area...5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change ...

Contents. Register...3 Advertiser Area...5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change  ... Contents Register...3 Advertiser Area....5 Dashboard...5 Account Information...6 My Wallet...8 Promotions...8 Change Password...12 Change Email...12 2 Register Advertisers can register on the website by

More information

Tellus EVV Introduction and Dashboard TRAINING REFERENCE GUIDE

Tellus EVV Introduction and Dashboard TRAINING REFERENCE GUIDE Tellus EVV Introduction and Dashboard TRAINING REFERENCE GUIDE REV: 03/18 Sponsored by Centric Consulting, LLC, and the State of Florida, AHCA TELLUS EVV System Training Reference Guide Table of Contents

More information

Selling items that your customers can download

Selling items that your customers can download Selling items that your customers can download A users guide to using Reason8 to sell items that can be automatically downloaded. 1 19 th October 2005 Background If you are planning to sell items that

More information

Server Side Scripting Report

Server Side Scripting Report Server Side Scripting Report David Nelson 205CDE Developing the Modern Web Assignment 2 Student ID: 3622926 Computing BSc 29 th March, 2013 http://creative.coventry.ac.uk/~nelsond/ - Page 1 - Contents

More information

Getting Started Quick Start Guide

Getting Started Quick Start Guide Getting Started Quick Start Guide This guide provides tips for users new to using the Learning Environment. It discusses how to navigate the main areas and how to change your personal preferences and settings.

More information

An Introduction to MOODLE

An Introduction to MOODLE An Introduction to MOODLE Index 1. How do I access Moodle? Page 2 2. How do I login? Page 2 3. How do I create a new course? Page 3 4. How do I add content to my course? Page 5 5. How do I link to a website?

More information

My Book is a website that will allow families and close groups of friends to

My Book is a website that will allow families and close groups of friends to OBJECTIVE My Book is a website that will allow families and close groups of friends to connect to each other through an integrated calendar, gallery, and organized place to pin notes. Currently people

More information

Tellus EVV Introduction and Dashboard TRAINING REFERENCE GUIDE

Tellus EVV Introduction and Dashboard TRAINING REFERENCE GUIDE Tellus EVV Introduction and Dashboard TRAINING REFERENCE GUIDE REV: 12/17 Sponsored by Centric Consulting, LLC, and the State of Florida, AHCA TELLUS EVV System Training Reference Guide Table of Contents

More information

Overview of Web Interface to CenturyLink B2B Gateway

Overview of Web Interface to CenturyLink B2B Gateway Overview of Web Interface to CenturyLink B2B Gateway Access and Password Policy for the Web Interface Like all Internet sites, the CenturyLink B2B web site requires an account containing both an identity

More information

ROLLA PUBLIC SCHOOLS WEB EDITING REFRESHER

ROLLA PUBLIC SCHOOLS WEB EDITING REFRESHER ROLLA PUBLIC SCHOOLS WEB EDITING REFRESHER Logging in 1. In the address line of Internet Explorer, enter the following URL: www.rolla.k12.mo.us/typo3 Or From the RPS Home page, select Staff Inside RPS

More information

Getting started with the ISIS Community Portal-

Getting started with the ISIS Community Portal- Getting started with the ISIS Community Portal- Creating an ISIS account- 1. In your web browser navigate to the ISIS portal site- http://www.isis.org and click Register in the upper right corner. If you

More information

Report HQ. Quick Start Guide. Report HQ Quick Start Guide - Version 1.2

Report HQ. Quick Start Guide. Report HQ Quick Start Guide - Version 1.2 Report HQ Quick Start Guide STEP 1 Requesting An Account 1) Request an account via the Report HQ Request Form 2) Nasdaq will verify your account 3) Once your account is verified and provisioned, you will

More information

WEB EDITING REFRESHER

WEB EDITING REFRESHER WEB EDITING REFRESHER ROLLA PUBLIC SCHOOLS January 2010 Logging in 1. In the address line of Internet Explorer, enter the following URL: www.rolla.k12.mo.us/typo3 Or From the RPS Home page, select Staff

More information

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design.

Table of Contents. I) Project Planning. User Analysis. III) Tasks Analysis. IV) Storyboard. V) Function Design. VI) Scenario Design. FINAL REPORT Table of Contents I) Project Planning II) User Analysis III) Tasks Analysis IV) Storyboard V) Function Design VI) Scenario Design VII) Database VIII) Usability Questionnaire IX) System Version

More information

erequest How to apply guide

erequest How to apply guide Overview is an application that assists UCB in request life cycle management. UCB has clear guidance in place on what they can support or sponsor. Online requests will go through an internal review and

More information

Online Classified Portal

Online Classified Portal Online Classified Portal Presented By Prajapati Sunil N (11034211047) Patel Chetan S (11034211026) MCA Semester-VI Acharya Motibhai Patel Institute of Computer Studies Project Profile Project Title Classified

More information

How to Navigate the Challenge Runner Website

How to Navigate the Challenge Runner Website How to Navigate the Challenge Runner Website How to Join Challenge Runner Create an Account To join the Maroon Moves Walking Challenge 1. Click on the Maroon Moves Challenge Runner Link: https://www.challengerunner.com/login/challenge/3e64ro-1h81

More information

1. Applying for registration registering a user / company account

1. Applying for registration registering a user / company account 1. Applying for registration registering a user / company account When you enter the website of the KLIPER https://kliper.tvp.pl, select "log in" in order to register. and when you are moved to the login

More information

Joomla 2.5 Kunena Component Installation

Joomla 2.5 Kunena Component Installation Joomla 2.5 Kunena Component Installation For installing the Kunena component in Joomla 2.5, you have to first login through the administrative panel of joomla by simply entering the url_of_your_website/administrator

More information

Reading Wonders: Importing Students & Adding Students to your Class

Reading Wonders: Importing Students & Adding Students to your Class Reading Wonders: Importing Students & Adding Students to your Class If you have not registered for Reading Wonders, first follow the tutorial Teacher Registration for Reading Wonders KEY POINT: You must

More information

GBACH Website Tutorial. Table of Contents

GBACH Website Tutorial. Table of Contents GBACH Website Tutorial 1 Table of Contents How to Login...Page 2 Homepage Navigation...Page 3 Upcoming Events...Page 4 My Event Signups..Page 5 Event Signups Page 6 Making Changes to an Event Sign-up Page

More information

User Manual Appointment System

User Manual Appointment System User Manual Appointment System Page 1 of 17 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 System Overview... 3 Menu Options... 3 Application Access... 3 Patient Registration... 6 Schedule Appointment...

More information

WebLink Manual EZ-CAMP2

WebLink Manual EZ-CAMP2 WebLink Manual EZ-CAMP2 SofterWare, Inc. WebLink March 2010 Table of Contents Table of Contents 1. WEBLINK OVERVIEW...3 Manual Overview...3 Support...3 WebLink Terminology...4 2. ADDING THE FORM TO YOUR

More information

Logging Into ipart Enter the Store ID

Logging Into ipart Enter the Store ID Logging Into ipart Enter the Store ID Using your computers web browser, navigate to the ipart homepage URL: https://ipart.amador.ca which will look similar to the image above. Enter the Store ID requested

More information

Introduction to the Learning Environment 8.3 to 8.4.x

Introduction to the Learning Environment 8.3 to 8.4.x Introduction to the Learning Environment 8.3 to 8.4.x User Guide Second edition, November 30, 2009 Contents My Home Accessing your courses Searching for courses Navigating inside a course Lists Actions

More information

Grapevine web hosting user manual. 12 August 2005

Grapevine web hosting user manual. 12 August 2005 Grapevine web hosting user manual 12 August 2005 Grapevine web hosting user manual 2 Contents Contents... 2 Introduction... 4 System features... 4 How it looks... 5 Main navigation... 5 Reports... 6 Web

More information

COUPONPAQ ADMIN USER GUIDE

COUPONPAQ ADMIN USER GUIDE COUPONPAQ ADMIN USER GUIDE -2- Overview THANK YOU FOR CHOOSING COUPONPAQ SOFTWARE COUPONPAQ platform is the No 1 feature packed coupon distribution software on the market. It creates an effective incentive

More information

Alpha College of Engineering and Technology. Question Bank

Alpha College of Engineering and Technology. Question Bank Alpha College of Engineering and Technology Department of Information Technology and Computer Engineering Chapter 1 WEB Technology (2160708) Question Bank 1. Give the full name of the following acronyms.

More information

Using Collections. Search and Filter All Collections. Copy or Delete a Collection. Edit a Collection's Details. Quick Reference Guide

Using Collections. Search and Filter All Collections. Copy or Delete a Collection. Edit a Collection's Details. Quick Reference Guide Quick Reference Guide Search and Filter All Collections Are you looking for information on a particular subject, like science? You can search and filter all collections both public and private to find

More information

Setting up Your Teacher Website Using ischooldistrict

Setting up Your Teacher Website Using ischooldistrict Setting up Your Teacher Website Using ischooldistrict This year we are transferring our web hosting and layout to a central system controlled and maintained at the county level. The goals of centralizing

More information

How-To Guide: My Participant Center.

How-To Guide: My Participant Center. How-To Guide: My Participant Center http://walknct.nationalmssociety.org 1 My Participant Center Tools STEP 1: From the Walk MS Homepage select LOGIN TO MY PARTICIPANT CENTER. Enter Username and Password

More information

NCAP Applications Manual

NCAP Applications Manual NCAP Applications Manual Login to application Once you've logged in, as usual, to the NICOR Web Portal, in the list of databases you'll see a link to the applications entitled "NCAP Web Applications".

More information

Chapter 4: Managing Your Personal Relay Website

Chapter 4: Managing Your Personal Relay Website Chapter 4: Managing Your Personal Relay Website Update your fundraising goal Customize your Personal Page o Edit your Personal Page o Upload a photo or video to your Personal Page Create a personal URL

More information

Crowd sourcing platform guide (updated ) Homepage

Crowd sourcing platform guide (updated ) Homepage Crowd sourcing platform guide (updated 12-10-2018) Homepage On the top-left side (1) of the website there is a dock to navigate the users through the website as shown in Figure 1. Home: by clicking the

More information

Organizing Your Network with Netvibes 2009

Organizing Your Network with Netvibes 2009 Creating a Netvibes Account 1. If you closed your Internet browser from the last exercise, open it and navigate to: htt://www.netvibes.com. 2. Click Sign In in the upper right corner of the screen. 3.

More information

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions.

Learn how to login to Sitefinity and what possible errors you can get if you do not have proper permissions. USER GUIDE This guide is intended for users of all levels of expertise. The guide describes in detail Sitefinity user interface - from logging to completing a project. Use it to learn how to create pages

More information

Let your customers login to your store after pre-approval

Let your customers login to your store after pre-approval Customer Approve & Disapprove Let your customers login to your store after pre-approval Extension Specification Document Version: 2.0.0 Magento 2 Extension URL: https://www.extensionhut.com/customer-approve-disapprove-for-magento-2.html

More information

Updating Your Local Program Webpage

Updating Your Local Program Webpage I. Go to www.soor.org Updating Your Local Program Webpage II. III. IV. On the top right hand side of the home page of www.soor.org click on LPC LOGIN. Type in your Username and Password, then click the

More information

** If you are having issues logging into , Contact **

** If you are having issues logging into  , Contact ** WINDOWS OneDrive for Business cloud storage via St. John s Email St. John s University email can be accessed through MySJU. Once logged into MySJU, click on the Student Email link, located in the upper

More information

CARDHOLDER TRAINING GUIDE February 12, 2016

CARDHOLDER TRAINING GUIDE February 12, 2016 February 2016 Contents Browser Requirements... 3 1. Login... 4 1.1 First-time Login... 4 1.2 Online help and user guides... 6 2. Transaction Review... 7 2.1 Reviewing & coding transactions... 7 2.2 Splitting

More information

How to use MySpace and comment on a photo OR send me a message updating me on what s happening over in Perth!

How to use MySpace and comment on a photo OR send me a message updating me on what s happening over in Perth! How to use MySpace and comment on a photo OR send me a message updating me on what s happening over in Perth! Signing up to MySpace: 1. Firstly, open your internet homepage and type MySpaces s URL (www.myspace.com)

More information

Walter TOOLSHOP. Customer manual. File: UM_Toolshop_Customer manual_en.doc Page 1 of 43 Last update: 09/04/ :49:00 by Andrea Berndt

Walter TOOLSHOP. Customer manual. File: UM_Toolshop_Customer manual_en.doc Page 1 of 43 Last update: 09/04/ :49:00 by Andrea Berndt Walter Customer manual File: UM_Toolshop_Customer manual_en.doc Page 1 of 43 The advantages of TOOL SHOP Up-to-date stock availability & price information Quick access to all tools information 7 days a

More information

HOW TO INTEGRATE A PAYPAL BUTTON INTO YOUR WEBSITE

HOW TO INTEGRATE A PAYPAL BUTTON INTO YOUR WEBSITE 1 HOW TO INTEGRATE A PAYPAL BUTTON INTO YOUR WEBSITE (c ) Laycock Publishing Limited You have full distribution rights to this publication, provided that it remains unaltered in any way whatsoever, and

More information

GOLF MS ONLINE FUNDRAISING GUIDE

GOLF MS ONLINE FUNDRAISING GUIDE GOLF MS ONLINE FUNDRAISING GUIDE Accessing Your Participant Center Step 1: Visit the Golf MS website at http://eventmig.nationalmssociety.org/site/tr?fr_id=25680&pg=entry (We suggest you bookmark this

More information

Andowson Chang

Andowson Chang Andowson Chang http://www.andowson.com/ All JForum templates are stored in the directory templates, where each subdirectory is a template name, being the default template name callled default. There you

More information

First Scottish Online Ordering User Guide

First Scottish Online Ordering User Guide First Scottish Online Ordering User Guide 1.13 www.firstscottish.com TABLE OF CONTENTS Getting Started Page Introduction 3 Minimum system requirements 3 Support details 3 Password protection 3 Login name

More information

Mobile Client. User Manual. Version: 2.0.0

Mobile Client. User Manual. Version: 2.0.0 Mobile Client User Manual Version: 2.0.0 Index Sr. No. Topic Page 1 Requirement 3 2 How to use Mobile Client 4 3 Compose Message 5 4 Select Contacts 6 5 Manage Contacts 17 6 Manage Distribution List 23

More information

Creating the Data Layer

Creating the Data Layer Creating the Data Layer When interacting with any system it is always useful if it remembers all the settings and changes between visits. For example, Facebook has the details of your login and any conversations

More information

Self-Demo Guide. Oracle ilearning and HTML DB

Self-Demo Guide. Oracle ilearning and HTML DB 2003-2004 Self-Demo Guide Oracle ilearning and HTML DB The Oracle Academy allows a school to offer advanced Database and Java programming courses through the use of Oracle s infrastructure. The school

More information

Secure Transfer Site (STS) User Manual

Secure Transfer Site (STS) User Manual Secure Transfer Site (STS) User Manual (Revised 3/1/12) Table of Contents Basic System Display Information... 3 Command Buttons with Text... 3 Data Entry Boxes Required / Enabled... 3 Connecting to the

More information

User Manual Al Manhal. All rights reserved v 3.0

User Manual Al Manhal. All rights reserved v 3.0 User Manual 1 2010-2016 Al Manhal. All rights reserved v 3.0 Table of Contents Conduct a Search... 3 1. USING SIMPLE SEARCH... 3 2. USING ADVANCED SEARCH... 4 Search Results List... 5 Browse... 7 1. BROWSE

More information

How-To Guide For: My Participant Center

How-To Guide For: My Participant Center How-To Guide For: My Participant Center My Participant Center Tools From the Challenge Walk MS homepage, www.mymschallenge.com, go to the Login to My Participant Center section. Enter your username and

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. WordPress About the Tutorial WordPress is an open source Content Management System (CMS), which allows the users to build dynamic websites and blog. WordPress is the most popular blogging system on the web and allows

More information

System powered by FATbit Technologies

System powered by FATbit Technologies Manual for GROUPON Script: bitfat Deals USER MANUAL FOR GROUPON: bitfatdeals SYSTEM System powered by FATbit Technologies Table of contents 1. Introduction. 3 of 98 2. Front End System Interface. 4 of

More information

Project Design Internet Auction Web Site University of British Columbia Okanagan COSC Fall 2007

Project Design Internet Auction Web Site University of British Columbia Okanagan COSC Fall 2007 Project Design Internet Auction Web Site COSC 304 - Fall 2007 Version: 5.0 Date: 10/26/2007 Project Team/Contacts Charles Ko Daniel Jeffery Murray Kriese (email deleted) (email deleted) (email deleted)

More information

OxyClassifieds Handbook

OxyClassifieds Handbook OxyClassifieds Handbook OxyClassifieds Team Email: office@oxyclassifieds.com Web: http://www.oxyclassifieds.com OxyClassifieds Handbook by OxyClassifieds Team Copyright 2006-2011 www.oxyclassifieds.com

More information

Assignment #3 CSCI 201 Spring % of course grade Title Weathermeister Back-End API Integration

Assignment #3 CSCI 201 Spring % of course grade Title Weathermeister Back-End API Integration Assignment #3 CSCI 201 4.5% of course grade Title Weathermeister Back-End API Integration Topics Covered Java Classes HTML CSS Basic Java Topics Java Servlets JSP JavaScript AJAX Databases SQL JDBC Overview

More information

FB Image Contest. Users Manual

FB Image Contest. Users Manual FB Image Contest Users Manual Table of contents Description.. 3 Step by step installation... 5 The administration interface.. 10 Creating a new contest... 13 Creating a Facebook Application.. 19 Adding

More information

Introduction. The topics included in this guide are:

Introduction. The topics included in this guide are: Introduction Caorda Content is a powerful content management tool that allows you to update your web site through a standard Internet web browser. The purpose of this guide is to introduce you to Caorda

More information

Welcome to our new catalog!

Welcome to our new catalog! Welcome to our new catalog! Use this guide to become familiar with the new catalog's features and functions. To get started, choose one of these topics: Finding your way around Searching Working with search

More information

Welcome to ClipShack! This document will introduce you to the many functions and abilities of this program.

Welcome to ClipShack! This document will introduce you to the many functions and abilities of this program. Welcome to ClipShack! This document will introduce you to the many functions and abilities of this program. 1-1 ClipShack 2006 The first thing you will see will be the home page with the menu bar. At the

More information

An Introduction to. WordPress.com. ICA40311 Certificate IV in Web-Based Technologies Southbank Institute of Technology

An Introduction to. WordPress.com. ICA40311 Certificate IV in Web-Based Technologies Southbank Institute of Technology An Introduction to WordPress.com ICA40311 Certificate IV in Web-Based Technologies Southbank Institute of Technology Acknowledgement: This document was compiled from notes available via the WordPress.com

More information

Drupal Basics. for COS and CLASS site maintainers

Drupal Basics. for COS and CLASS site maintainers Drupal Basics for COS and CLASS site maintainers Introduction This guide is meant as a starting point for site maintainers in the UNT College of Science and College of Liberal Arts and Social Sciences

More information

Hindustan Book Agency (HBA)

Hindustan Book Agency (HBA) Hindustan Book Agency (HBA) (http://hindustan.igpublish.com)* Hindustan Book Agency (HBA), established over 60 years ago, publishes advanced level books in mathematics and physics. Since 1950 HBA publishes

More information

Web Pro Manager: General User Guide

Web Pro Manager: General User Guide Web Pro Manager: General User Guide Version 1.14 (7/2013) Web Pro Manager is an open-source website management platform that is easy to use, intuitive, and highly customizable. Web Pro Manager can be used

More information

Fun2SMS.com Get Connected With Us

Fun2SMS.com Get Connected With Us BCR3054 ELECTRONIC COMMERCE LAB 2 Final Year Project Coordinator : Mr. Mohd Rozaini Supervisor : Mrs. Rathimala Date Submission: 11th May 2006 Prepared By: Chong Yew Yian Chew Poh Lee Connie 1021145167

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Joomla About the Tutorial Joomla is an open source Content Management System (CMS), which is used to build websites and online applications. It is free and extendable which is separated into frontend templates

More information

ISU Market. A website application for buying and selling various items in the ISU domain. ComS 309 Portfolio 2 Group 11: Chao Song & Neh Batwara

ISU Market. A website application for buying and selling various items in the ISU domain. ComS 309 Portfolio 2 Group 11: Chao Song & Neh Batwara ISU Market A website application for buying and selling various items in the ISU domain ComS 309 Portfolio 2 Group 11: Chao Song & Neh Batwara Contents 1 Overview 1 2 New Concepts and Complexity 2 3 Creation,

More information

PubWC Bathroom Review App By Clay Jacobs Advisor: Alexander Dekhtyar Computer Science Department California Polytechnic State University 2017

PubWC Bathroom Review App By Clay Jacobs Advisor: Alexander Dekhtyar Computer Science Department California Polytechnic State University 2017 PubWC Bathroom Review App By Clay Jacobs Advisor: Alexander Dekhtyar Computer Science Department California Polytechnic State University 2017 Abstract For my senior project, I developed an ios application

More information

Processing Submittals via Prolog Converge

Processing Submittals via Prolog Converge Processing Submittals via Prolog Converge Submittal Review Procedure Receiving Notification An automatic notification will be sent to your email when the team creates a new Submittal Package and assigns

More information

IM Cloud Marketplace. Cloud Store Guide

IM Cloud Marketplace. Cloud Store Guide IM Cloud Marketplace Cloud Store Guide Contents Preface... 7 Documentation Conventions... 7 Typographical Conventions... 7 General Conventions... 8 Feedback... 8 Introduction... 9 System Requirements...

More information

PASTPERFECT-ONLINE. No web design or programming expertise is needed to give your museum a worldclass web presence.

PASTPERFECT-ONLINE. No web design or programming expertise is needed to give your museum a worldclass web presence. PASTPERFECT-ONLINE PastPerfect-Online is the fast, affordable and easy way to provide public access to your PastPerfect data via the World Wide Web. Built on proven MWeb technology, PastPerfect-Online

More information

Prototype Report (PRO) Version 2.1. Prototype Report. PicShare. Team 02. Team Members

Prototype Report (PRO) Version 2.1. Prototype Report. PicShare. Team 02. Team Members Prototype Report PicShare Team 02 Team Members Sultan Alsarra Adil cem Albayrak Julapat Julnual Charles Reitz Mohammad Almunea Aref Shafaeibejestan Andrea Brown Travis Weaver 12/7/2015 Version History

More information

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and

PHPRad. PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and PHPRad PHPRad At a Glance. This tutorial will show you basic functionalities in PHPRad and Getting Started Creating New Project To create new Project. Just click on the button. Fill In Project properties

More information

Catalog Management Tool (CMT) Reference Guide

Catalog Management Tool (CMT) Reference Guide Catalog Management Tool (CMT) Reference Guide The Catalog Management Tool (CMT) provides data on items listed on the Portal s e-catalog. The CMT offers contracted vendors advanced item submission and catalog

More information

SharePoint 2010 Instructions for Users

SharePoint 2010 Instructions for Users SharePoint 2010 Instructions for Users 1. Access your SharePoint Web site...2 2. Work with folders and documents in a Shared Documents Library...3 2.1 Edit a document...3 2.2 Create a New Document...3

More information

Table of Content Title Page number 1. Register 2. Login 3. Dashboard 4. Account Information 5. Recent Activity 6. Messages 7.

Table of Content Title Page number 1. Register 2. Login 3. Dashboard 4. Account Information 5. Recent Activity 6. Messages 7. 1 Table of Content Title Page number 1. Register 3 2. Login 4 3. Dashboard 5 4. Account Information 7 5. Recent Activity 11 6. Messages 12 7. My Credits 13 8. Share and Earn 14 9. Rewards 14 10. My Orders

More information

User Guide for REP User

User Guide for REP User User Guide for REP User Home Page This document will cover the features and functions of the TNMP Historical Usage Request / LOA site. The features on this site include the following: User Guide provides

More information

2011 Challenge Walk MS Online Fundraising Guide

2011 Challenge Walk MS Online Fundraising Guide 2011 Challenge Walk MS Online Fundraising Guide Challenge Walk MS: Step by Step Guide How To: Access your Participant Center Fundraise with Facebook Personalize your Personal Page Create an Address Book

More information

An Online Interactive Database Platform For Career Searching

An Online Interactive Database Platform For Career Searching 22 Int'l Conf. Information and Knowledge Engineering IKE'18 An Online Interactive Database Platform For Career Searching Brandon St. Amour Zizhong John Wang Department of Mathematics and Computer Science

More information

Business ebanking User Guide

Business ebanking User Guide Business ebanking User Guide If you have any questions, please contact Business ebanking Support at 1-800-593-4345 Contents About Business Online Banking... 3 System Requirements/Considerations... 4 Password

More information

VirtueMart Top Ten Module

VirtueMart Top Ten Module VirtueMart Top Ten Module Introduction: VirtueMart provides a module (mod_virtuemart_topten_1.1.5.j15.zip) in the complete installation package of VirtueMart. mod_virtuemart_topten_1.1.5.j15.zip: This

More information

Digital StoreFront TRAINING

Digital StoreFront TRAINING Florida Agricultural and Mechanical University Digital StoreFront TRAINING Faculty and Staff January 2017 What is Digital StoreFront (DSF)? Digital StoreFront is a web-to-print e-commerce site that allows

More information

GARAGE SALE PERMIT APPLICATION ON LINE

GARAGE SALE PERMIT APPLICATION ON LINE GARAGE SALE PERMIT APPLICATION ON LINE The Village of Pinecrest makes it easy for you to apply for certain types of permits online using etrakit.net. This also includes garage sale permits. To access etrakit.net,

More information

GREENSBURG SALEM SCHOOL DISTRICT Application: Portal. Parent Portal Step-by-step Instructions

GREENSBURG SALEM SCHOOL DISTRICT Application: Portal. Parent Portal Step-by-step Instructions GREENSBURG SALEM SCHOOL DISTRICT Application: Portal Parent Portal Step-by-step Instructions INTRODUCTION This guide provides step-by-step instructions for parents to log in and access information through

More information

Preferences Table of Contents

Preferences Table of Contents Preferences Table of Contents My Profile... 2 Quick Profile Maintenance... 2 My Names... 3 My Addresses... 3 My E-Mail Addresses... 4 Personal Photo and Logo Maintenance... 4 My Documents... 6 My Phone

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

BeetleEye Application User Documentation

BeetleEye Application User Documentation BeetleEye Application User Documentation BeetleEye User Documentation 1 Table of Contents Welcome to the BeetleEye Application... 6 Overview... 6 Navigation... 6 Access BeetleEye... 6 Update account information...

More information

Paragon Essentials: Getting Started with Paragon 4 This manual sets the foundation for all future work in Paragon 4. It covers the basic activities

Paragon Essentials: Getting Started with Paragon 4 This manual sets the foundation for all future work in Paragon 4. It covers the basic activities Paragon Essentials: Getting Started with Paragon 4 This manual sets the foundation for all future work in Paragon 4. It covers the basic activities necessary to navigate the MLS. Table of Contents 1. Accessing

More information

Drupal 7 Template. Page 1 of 27. Site Title. Navigation Tabs. Homepage Slide. Social Media. News article. Events. Links. Contact Information

Drupal 7 Template. Page 1 of 27. Site Title. Navigation Tabs. Homepage Slide. Social Media. News article. Events. Links. Contact Information Site Title Navigation Tabs Homepage Slide News article Social Media Events Contact Information Links Page 1 of 27 Table of Contents USER ACCOUNT... 3 Edit Profile... 3 CONTENT... 5 ADD CONTENT... 5 BASIC

More information

JSN Dona Portfolio User's Guide

JSN Dona Portfolio User's Guide JSN Dona Portfolio User's Guide Getting Started Template Package Installation 1. Download the template installation package Log in JoomlaShine Customer Area to download the template package that you have

More information

Including Dynamic Images in Your Report

Including Dynamic Images in Your Report Including Dynamic Images in Your Report Purpose This tutorial shows you how to include dynamic images in your report. Time to Complete Approximately 15 minutes Topics This tutorial covers the following

More information

SEARCH & APPLY FOR TEMPORARY HIRE APPLICANT POOL

SEARCH & APPLY FOR TEMPORARY HIRE APPLICANT POOL SEARCH & APPLY FOR TEMPORARY HIRE APPLICANT POOL Overview This step-by-step guide demonstrates how to apply for the Temporary Hire Applicant Pool as an external applicant. External Applicants are individuals

More information

How to Add and Edit Vehicles on OVE.com. For the best experience please turn on your sound.

How to Add and Edit Vehicles on OVE.com. For the best experience please turn on your sound. How to Add and Edit Vehicles on OVE.com For the best experience please turn on your sound. Learn how to add and edit inventory, pictures, and prices, as well as preview your listings. Login or Sign Up

More information

List of Updates. Content Updates Detail Related Pages Update Date. Whole Deck 8/2/2018

List of Updates. Content Updates Detail Related Pages Update Date. Whole Deck 8/2/2018 Store Builder List of Updates Content Updates Detail Related Pages Update Date Store Builder New Interface 1. Whole new interface 2. Add All Products Page 3. Function improved under each template 4. Version

More information

Portal/Extranet User Guide for Clients

Portal/Extranet User Guide for Clients Portal/Extranet User Guide for Clients Welcome to the ichannel Portal/Extranet. This guide will walk you through logging into your personalized, secure portal/extranet site. It will also show you how to

More information