An Online Interactive Database Platform For Career Searching

Size: px
Start display at page:

Download "An Online Interactive Database Platform For Career Searching"

Transcription

1 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 Virginia Wesleyan University Virginia Beach, Virginia 23455, USA Abstract The purpose of this research is to create a functional social platform for rising graduates, recent graduates, and veterans in the work force to help guide those who are about to graduate and start on career searching. This program allows these groups of people to connect and interact with others. The approach used was a focus in security and functionality. The key features are an interactive partners list, an interests list, a commenting function for each interest to interact with others with the same interests, a partner search, and a secure login and logout feature. The project was implemented with CSS, HTML, PHP, and MySQL. Keywords: database, career searching, PHP, MySQL 1. Introduction What are the official steps that one who just graduated take in order to launch their career? How do they know the countless interviews are for the right company that could help them propel their career? These were the questions that gave this project life [1]. This project is specifically aimed at college students and those who just recently graduated. That is why this project matters. Many students in college or who just graduated are struggling to find their preferred career choice, yet along a singled job. This website should allow these people to create a very basic research template and some references to allow themselves to retrieve information from others in their interested fields that are already established. The paper is organized in the following sections. The logical structure of the system is introduced in the next section. In Section 3, the details of the main modules for case study are presented as well as the code samples. Conclusion is given in Section System Structure In order to accomplish the goals proposed in the abstract, the first step was to focus on a secure log in feature [2]. Next, was to allow the user s to request partners which allowed them to view each other s personal information in order to further communicate. The other significant result from research was the creation of a dynamic page which allowed users to communicate between others with the same interest. First, the user would select their career interests, then the information would be sent to a table that stored the user s ID number and the selected interest. Then, for each interest that person selected, they were able to see the posting page for the interest and have the option of being able to post a comment. This was done by creating a table for each possible career interest that contains a user s username and the comment they posted. Finally, a log out feature was incorporated to ensure that no session variables were vulnerable when a user was done [3]. When visiting the site, the user will first be sent to FirstStepIndex.php where they would have the option to register an account or to log in. If an account is set up then the user will have multiple options. Some of these options are visiting their profile information, selecting career interests, and requesting partners as friends. These function pages are all available on a sidebar so the user to view all of their options at the same time. The system flowchart is shown in Figure 1. The first tables that were created were to allow the user s to register an account and be able to log in afterwards. First, the table FirstStep was created in order to allow the a user s password to be securely stored. The username and passwords were passed through the md5 function in order to make sure no one, even the administrator, knows anyone s passwords. In order to utilize the personal information and be able to present it on the web page, a second table had to be formed that contains the user s personal information.

2 Int'l Conf. Information and Knowledge Engineering IKE'18 23 Function Pages FirstStepIndex.php MyProfile.ph MyProfileSettin gs.php OldUser.php CareerIntersts.ph MyProfileSettin gsaction.php NewUser.php CareerInterstsAction.php MyIntersts.ph MyInterstsAction.p NewUserAction.php FirstStepHomePage. Other functional modules Fig. 1 The system flowchart Fig. 2 The FirstStep table structure The table FirstStep2 contains the user s personal information such as and phone number but does not include the password, therefore this table was able to be safely used to output users information without any risk of printing their password. Another important table was the use of Partners. The main purpose of this table was to determine the specific status between two users. This was done by the table being very reliable on a column named Status which used 0, 1, 2, and 3 as values to determine whether a user has sent a partner request, accepted a request, rejected a request, or are partners. The value 0 means the user has rejected a partner request, 1 means the user has sent a partner request, the value 2 means that the requested user has accepted the request by the user who sent the request has not seen the notification of the accepted request yet, and the value 3 means the two users are partners. 3. Case Study The default page that you are first brought to is FirstStepIndex.php. This page allows for the user to log in if they already have an account set up or allows them to link to NewUser.php in which they can set up an account. This page takes advantage of HTML Form programming. In order for the user to create an account to be able to log into FirstStep, they must submit a first name, last name, username, password, , and phone number. This was created by HTML Form programming [3]. Before the user s submitted information can be stored into a MySQL table, a number of conditions must be checked. First, the input from the forms is checked to see if any of the required fields are empty. If they are, then a

3 24 Int'l Conf. Information and Knowledge Engineering IKE'18 MySQL query is used to search through the table FirstStep to make sure the desired username is not already taken. Next, the two passwords are checked to make sure they match so the user doesn t accidently mistype a password they did not want to use. Finally, if all of these conditions are met, then the password and username are encrypted through the use of the md5 functions in order to be securely stored in a table. Another query is crafted to insert the user s first name, last name, the encrypted username and encrypted password into FirstStep. If this query is successful, then another query is created to insert all of the user s information, except their password, into FirstStep2 where the username is not encrypted [4]. Fig. 3 The action script for new users sidebar. If the user at any time wishes to view or edit their profile information, they can click on My Profile in the Here, they will see all of the personal information that was stored in the table FirstStep2. Fig. 4 The screen shot for the profile page After the user has logged in for the first time, one of the first things they should do is select their career interests to be able to interact with others that have the same interests. Here, each interest is printed using for loops to loop through each array and add a checkbox to each row so the user can select it as an interest. Thus, each selected interest is put into an array for each group of interests that is passed on to the next page to be stored in the table Interests. Fig. 5 The script for selecting the career Another key feature of FirstStep is the use of being able to send, retrieve, and accept or reject partner requests. The partner feature serves as creating a distinct relationship between two users where they can view each other s personal information to communicate outside of FirstStep. The user can input the known information of a partner into the HTML forms to be searched where they can choose to send them a partner request.

4 Int'l Conf. Information and Knowledge Engineering IKE'18 25 Fig. 6 The page of search for partners Before the search feature is utilized, the HTML forms will go through checks to make sure the fields are not empty [5]. Then, through various elseif statements, the user can search by just a first name, just a last name, just a username, or any combination of the three. Inside of these elseif statements contain queries that will select first names, last names, and usernames of any users where their personal information matches the user s input. For each match, there is an additional column that contains a checkbox where the user can select to send or not to send a partner request. Fig. 7 The action script for search for partners Passed to PartnerRequest.php from PartnersAction.php is the array of the names of users requested. Since each of these iterations in the array contained another array, a for loop was created to store just the names of the people requested so they can be printed. Another for loop was structured to iterate through the array of the requested users. Inside this, the user ID from each of the requested users is retrieved through a MySQL query. Then two more queries are crafted to check from the table Partners if the two users are already friends, or if one of the users has sent a request already, or if a user has accepted by the user who sent the request has not seen the notification yet. If the number of rows from the results of these two queries is 0, then a row is inserted into Partners where the user who sent the request is stored under User1ID, the user who was sent the request is stored under User2ID and the Status for the two users is set to 1. However, if the number of rows from the results of the two queries is not 0, then a query is used to select the personal information of the requested user(s) and then notifies the user that that person has already been requested, has already sent the user a request, or is already a partner. After all of that, if the user has any partners, then they can be viewed under My Partners in the sidebar. Here a query is made to check if the user has any partners at that time. This is done by selecting all of the rows from Partners where the user s ID is under User1ID or User2ID and the status is set to 3. Then if the number of rows from the result of the query is not equal to 0, a combination of a for loop, while loop, and foreach loop is used to print the list of all of the user s partners from the table. Alongside this list is another column where the user can remove a partner(s) if they desire. If the user decides to remove a partner, then an array is passed that contains the ID numbers of the people selected to remove. If the count of this array is not equal to 0, then loops are once again used to print which users have been removed as a partner and for a query to be made that deletes the row from the table Partners.. See Figure 9 for the sample script.

5 26 Int'l Conf. Information and Knowledge Engineering IKE'18 Fig. 8 The page of results for partners 4. Conclusion Fig. 9 The script for displaying partners The system of FirstStep has nearly achieved all of the goals that were created when managing this project. The career interests and dynamic comment pages along with the partners function allows for a functional and simple website. More functions to be extended include securely uploading a file that contains a user s resume for others to view and securely recovering accounts for users if they were to forget their password. However, all of the others goals that were created for this project had been fulfilled using HTML, PHP, and MySQL 5. References [1] "Explore Careers." Career and Occupations Guide: Complete List of Careers. [2] "Manual :: Obtaining Data from Query Results." PEAR - PHP Extension and Application Repository. The PHP Group. < [3] "PHP: How to Get the Current Page URL." < [4] Stack Overflow. Stack Exchange Inc. < [5] W3Schools Online Web Tutorials.

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

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

Guide on how to use the macademy.

Guide on how to use the macademy. Guide on how to use the macademy. Thank you for showing interest in My Learning Academy, the premier e-learning solution in Africa. This document will give you an overview of how to navigate the portal,

More information

Ivy Tech Careers Site. Applicant Users Guide

Ivy Tech Careers Site. Applicant Users Guide Ivy Tech Careers Site 5/6/2014 Table of Contents Introduction... 2 Create Account... 3 View and/or Search for Open Positions... 4 Applying To An Open Position... 6 Review Application Status... 11 Uploaded

More information

Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon. All Completed SRS2 Steps

Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon. All Completed SRS2 Steps Software Requirements Document for Graffiti Author: Group 03 Yuly Suvorov, Luke Harvey, Ben Holland, Jordan Cook, Michael Higdon Version Date Author Change 0.1 09/13/ SM Initial Document 07 0.2 09/22/

More information

Human Resources PROCEDURE MANUAL

Human Resources PROCEDURE MANUAL Table of Contents Table of Contents... 1 External Applicant Instructions... 2 Edit Your Application... 7 Viewing Your Application Status... 10 1 External Applicant Instructions Go to our Home Page: http://www.spiritmountain.com

More information

Uploading a Resume are individuals not currently employed in a regular full or part-time position at Fresno State University.

Uploading a Resume are individuals not currently employed in a regular full or part-time position at Fresno State University. 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 internal applicant. Internal Applicants are current

More information

City of Knoxville s Career User Manual

City of Knoxville s Career User Manual PeopleSoft City of Knoxville s Career User Manual For External Applicants April 2018 City of Knoxville Photo courtesy of Knoxville Tourism & Sports Corporation Table of Contents Project Document Control...

More information

National College of Ireland BSc in Computing 2017/2018. Deividas Sevcenko X Multi-calendar.

National College of Ireland BSc in Computing 2017/2018. Deividas Sevcenko X Multi-calendar. National College of Ireland BSc in Computing 2017/2018 Deividas Sevcenko X13114654 X13114654@student.ncirl.ie Multi-calendar Technical Report Table of Contents Executive Summary...4 1 Introduction...5

More information

Course Outline Repository Guide

Course Outline Repository Guide Contents... 1 How do I access the Course Outline Repository?... 1 How do I use the Course Outline Repository?... 2 How do I search the Course Repository?... 2 Where do I download the course outline?...

More information

Pro Events. Functional Specification. Name: Jonathan Finlay. Student Number: C Course: Bachelor of Science (Honours) Software Development

Pro Events. Functional Specification. Name: Jonathan Finlay. Student Number: C Course: Bachelor of Science (Honours) Software Development Pro Events Functional Specification Name: Jonathan Finlay Student Number: C00193379 Course: Bachelor of Science (Honours) Software Development Tutor: Hisain Elshaafi Date: 13-11-17 Contents Introduction...

More information

Requesting an Independent Study

Requesting an Independent Study Requesting an Independent Study The LAS Independent Study application is used by students, faculty, and chairs. Students use this application to enroll in an LAS independent study. Students should consult

More information

2014 Equal Justice Works Conference and Career Fair User Guide

2014 Equal Justice Works Conference and Career Fair User Guide 2014 Equal Justice Works Conference and Career Fair User Guide Friday and Saturday, October 24 and 25 Bethesda North Marriott Hotel & Conference Center Bethesda, MD The Conference and Career Fair online

More information

HireABobcat Employer Guide

HireABobcat Employer Guide HireABobcat Employer Guide 2017 Edition Table of Contents: How to Register pages 1-4 How to Post a Job pages 5-6 How to Repost a Job pages 6-8 How to View Students Who Apply for a Posting pages 9-10 How

More information

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward

Perch Documentation. U of M - Department of Computer Science. Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward Perch Documentation U of M - Department of Computer Science Written as a COMP 3040 Assignment by Cameron McKay, Marko Kalic, Riley Draward 1 TABLE OF CONTENTS Introduction to Perch History of Perch ---------------------------------------------

More information

Courtesy of Clayton Fyfe. Lab 2 Runthrough

Courtesy of Clayton Fyfe. Lab 2 Runthrough Courtesy of Clayton Fyfe Lab 2 Runthrough Highlights 1. Accessing and Using phpmyadmin 2. CRUD for phpmyadmin 3. Microsoft expression WEB 3 Overview 4. CRUD for PHP 5. Adding Files to the playground Accessing

More information

BAUER COLLEGE OF BUSINESS BAUER CAREER GATEWAY EMPLOYER ON CAMPUS RECRUITING USER GUIDE

BAUER COLLEGE OF BUSINESS BAUER CAREER GATEWAY EMPLOYER ON CAMPUS RECRUITING USER GUIDE BAUER COLLEGE OF BUSINESS BAUER CAREER GATEWAY EMPLOYER ON CAMPUS RECRUITING USER GUIDE Rockwell Career Center Bauer College of Business Cemo Hall University of Houston Houston, TX 77204-6021 832-842-6120

More information

CANDIDATE GUIDE. Overview. Quick Guide. This Quick Guide will cover the following topics: Searching for a job - Page 2

CANDIDATE GUIDE. Overview. Quick Guide. This Quick Guide will cover the following topics: Searching for a job - Page 2 CANDIDATE GUIDE Overview This will cover the following topics: Searching for a job - Page 2 Navigating job listings - Page 3 Applying for positions - Page 4 Applying with a resume - Page 4 Applying with

More information

TimesheetX helps schools automate the time sheet submission and approval process for students, employers, and administrators.

TimesheetX helps schools automate the time sheet submission and approval process for students, employers, and administrators. Supervisor Training + = A Total Solution JobX helps schools automate the job posting, application submission, application review, hiring and reporting process for students, employers, and site administrators.

More information

Microsoft Expression Web Basics of Creating a Web Site

Microsoft Expression Web Basics of Creating a Web Site Information Technology Department Pyle Center 1204 Wilmington College Wilmington, OH 45177 (800) 341-9318, ext. 459 helpdesk@wilmington.edu Microsoft Expression Web Basics of Creating a Web Site The first

More information

User Guide of PIP System for Employers

User Guide of PIP System for Employers User Guide of PIP System for Employers https://pip.cintec.cuhk.edu.hk/jobs/index.php Enquiry: Placement and Internship Programme Coordinator Centre for Innovation and Technology The Chinese University

More information

West Virginia Division of Personnel Online Application User's Guide. Jobs Open for Application to Everyone

West Virginia Division of Personnel Online Application User's Guide. Jobs Open for Application to Everyone West Virginia Division of Personnel Online Application User's Guide This brief guide is provided to help applicants understand the steps in the online application process. You may apply at any computer

More information

Human Resources PROCEDURE MANUAL

Human Resources PROCEDURE MANUAL Table of Contents Table of Contents... 1... 2 Edit Your Application... 8 Viewing Your Application Status... 11 1 Logging in On-site 1. From a kiosk located in or in Uniforms go to the Coyote Connection

More information

KWizCom Apps and Tools activation tutorial

KWizCom Apps and Tools activation tutorial KWizCom Apps and Tools activation tutorial This article outlines how to use KWizCom's activation form in order to activate your KWizCom App (SharePoint online add-in) and other SharePoint Online Tools

More information

Self-Service Portal Implementation Guide

Self-Service Portal Implementation Guide Self-Service Portal Implementation Guide Salesforce, Spring 6 @salesforcedocs Last updated: April 7, 06 Copyright 000 06 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

SIS STUDENT INFORMATION CENTER

SIS STUDENT INFORMATION CENTER Using the Self Service Student Center As a student you can: 1. Log Into the System 2. Navigate 3. Add Favorites 4. Add, Drop, or Swap Classes 5. View Your Class Schedule 6. View Grades 7. View Degree Progress

More information

Symplicity Career Services Manager Student User Reference Guide

Symplicity Career Services Manager Student User Reference Guide Symplicity Career Services Manager Student User Reference Guide WELCOME TO SYMPLICITY! Wayne State University Law School Career Services Office Symplicity is the new web-based career management system

More information

Taleo External Applicant

Taleo External Applicant Table of Contents Last Updated: 8/28/17 We thank you for your interest in job opportunities. Please use these materials to find information to guide you through the application experience. Topic Pages

More information

JobX is seamlessly integrated with your University of Vermont School information System (SIS).

JobX is seamlessly integrated with your University of Vermont School information System (SIS). Supervisor Training = A Total Solution JobX helps schools automate the job posting, application submission, application review, hiring and reporting process for students, employers, and site administrators.

More information

WELCOME TO THE NAU APPLICANT TUTORIAL! This tutorial will take approximately 15 minutes to complete.

WELCOME TO THE NAU APPLICANT TUTORIAL! This tutorial will take approximately 15 minutes to complete. WELCOME TO THE CAREERS @ NAU APPLICANT TUTORIAL! This tutorial will take approximately 15 minutes to complete. MAKING THE APPLICATION WORK FOR YOU! After reviewing this tutorial, you will have learned

More information

MyHVP Web Application User Guide

MyHVP Web Application User Guide MyHVP Web Application User Guide Table of Contents General Information page 2 System Access Logging in and out page 3 Welcome page 4 Take the Profile Selecting a user page 5 Entering a profile page 7 Editing

More information

penelope case management software AUTHENTICATION GUIDE v4.4 and higher

penelope case management software AUTHENTICATION GUIDE v4.4 and higher penelope case management software AUTHENTICATION GUIDE v4.4 and higher Last modified: August 9, 2016 TABLE OF CONTENTS Authentication: The basics... 4 About authentication... 4 SSO authentication... 4

More information

CGS 3066: Spring 2017 SQL Reference

CGS 3066: Spring 2017 SQL Reference CGS 3066: Spring 2017 SQL Reference Can also be used as a study guide. Only covers topics discussed in class. This is by no means a complete guide to SQL. Database accounts are being set up for all students

More information

Student Guide to ebear powered by Symplicity

Student Guide to ebear powered by Symplicity Student Guide to ebear powered by Symplicity Center for Career Development C-224 Montebello Complex 443.885.3110 careers@morgan.edu www.morgan.edu/careerdevelopment TABLE OF CONTENTS LOGGING IN... 2 HOME

More information

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ).

How to Activate Student Log in to the student Registration system (also known as My Community Education or Banner ). How to Activate Student E-Mail 1. Log in to the student Registration system (also known as My Community Education or Banner ). 2. The new account notice shows at the top of the screen once signed in. Click

More information

2012 Equal Justice Works Conference and Career Fair Student JusticeWork! User Guide

2012 Equal Justice Works Conference and Career Fair Student JusticeWork! User Guide 2012 Equal Justice Works Conference and Career Fair Student JusticeWork! User Guide Friday and Saturday, October 26 and 27 Crystal Gateway Marriott Arlington, VA Equal Justice Works is using the JusticeWork!

More information

HIRING MANAGER S JOB SITE USER S GUIDE. Fitchburg State University Hiring System

HIRING MANAGER S JOB SITE USER S GUIDE. Fitchburg State University Hiring System HIRING MANAGER S JOB SITE USER S GUIDE Fitchburg State University Hiring System TABLE OF CONTENTS INTRODUCTION... 3 GETTING STARTED... 5 CREATING A POSTING.7 Creating Posting from Position Type... 7 Posting

More information

Google Classroom User Manual

Google Classroom User Manual Google Classroom User Manual Table of Contents Table of Contents 1 Google Classroom on a Computer 3 1: Making an Account 3 2: Change Your Profile Photo 5 3: Customize your Notifications 7 4: Join a Class

More information

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link.

How to Order a Four Panel Brochure through Print Services. Go to the Print Services Web Page and select the Online Store link. How to Order a Four Panel Brochure through Print Services Go to the Print Services Web Page and select the Online Store link. 1 Enter your Username and Password on the Print Services Online Ordering home

More information

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

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop 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

More information

WELCOME TO IRECRUIT. Contents: Step 1: How to Register.3. Step 2: Search for Jobs Step 3: Apply for a Job..23

WELCOME TO IRECRUIT. Contents: Step 1: How to Register.3. Step 2: Search for Jobs Step 3: Apply for a Job..23 WELCOME TO IRECRUIT irecruit is our online job search and application system. Use irecruit to search and apply for advertised UTS jobs. You can also use irecruit to set up job alerts tailored to your job

More information

LionsLink. Student and Alumni Guide

LionsLink. Student and Alumni Guide LionsLink Student and Alumni Guide How to register, login, update your profile, upload your resume or other documents and apply for on and off campus jobs Best browsers to use: Firefox, Google Chrome 1

More information

Quick-Start Tutorial. Airavata Reference Gateway

Quick-Start Tutorial. Airavata Reference Gateway Quick-Start Tutorial Airavata Reference Gateway Test/Demo Environment Details Tutorial I - Gateway User Account Create Account Login to Account Password Recovery Tutorial II - Using Projects Create Project

More information

User Manual PetroleumDepartment COMPANY LICENCES (Petroleum Business Licence, LPG Business Licence and Petroleum Construction Permit)

User Manual PetroleumDepartment COMPANY LICENCES (Petroleum Business Licence, LPG Business Licence and Petroleum Construction Permit) User Manual PetroleumDepartment COMPANY LICENCES (Petroleum Business Licence, LPG Business Licence and Petroleum Construction Permit) Project Name: Supply, Installation, and Commissioning of an RMIS Prepared

More information

USPTO Accommodation Point User Guide VERSION 1.0

USPTO Accommodation Point User Guide VERSION 1.0 USPTO Accommodation Point User Guide VERSION 1.0 ii PUBLISHED BY MicroPact, Inc. 12901 Worldgate Drive, Suite 800, Herndon, VA 20170 COPYRIGHT MICROPACT, INC. All rights reserved. No part of the contents

More information

Employer Guide to the UCLan Careers System

Employer Guide to the UCLan Careers System Employer Guide to the UCLan Careers System Registering an Account To register an employer account please follow these instructions. Click on this button: Then select your employer type using these three

More information

CONTENTS IN DETAIL INTRODUCTION 1 THE FAQS OF LIFE THE SCRIPTS EVERY PHP PROGRAMMER WANTS (OR NEEDS) TO KNOW 1 2 CONFIGURING PHP 19

CONTENTS IN DETAIL INTRODUCTION 1 THE FAQS OF LIFE THE SCRIPTS EVERY PHP PROGRAMMER WANTS (OR NEEDS) TO KNOW 1 2 CONFIGURING PHP 19 CONTENTS IN DETAIL INTRODUCTION xiii 1 THE FAQS OF LIFE THE SCRIPTS EVERY PHP PROGRAMMER WANTS (OR NEEDS) TO KNOW 1 #1: Including Another File as a Part of Your Script... 2 What Can Go Wrong?... 3 #2:

More information

THE LHH. For New Users. Using a webcam, you can record your responses to standard interview questions and assess your performance.

THE LHH. For New Users. Using a webcam, you can record your responses to standard interview questions and assess your performance. THE LHH THE LHH INTERVIEW Powered by Montage CENTER For New Users Using a webcam, you can record your responses to standard interview questions and assess your performance. Access 1. LOG IN to the Career

More information

Supplier Response Guide. Access Supplier Portal to Review and Respond to Bid Opportunities

Supplier Response Guide. Access Supplier Portal to Review and Respond to Bid Opportunities Access Supplier Portal to Review and Respond to Bid Opportunities Contact entered for commodity code (and established proxies) will receive email notification of bid opportunity. 1. Login to the Supplier

More information

UCF APPLICANT TUTORIAL

UCF APPLICANT TUTORIAL UCF APPLICANT TUTORIAL Table of Contents Application Tutorial... 3 Navigating the Home Screen... 3 Creating an Account... 5 Applying for a Position... 6 Your Applications Screen... 17 Index... 19 RSS Feed...

More information

How to access and use the Employee Kiosk Documentation provided by: SWOCA

How to access and use the Employee Kiosk Documentation provided by: SWOCA How to access and use the Employee Kiosk Documentation provided by: SWOCA To utilize the Employee Kiosk to access your employee profile, position details, performance reviews, attendance, leave balances,

More information

SUMMER INTERNSHIP 2018

SUMMER INTERNSHIP 2018 SUMMER INTERNSHIP 2018 TITLE : BILLING SOFTWARE FOR DIFFERENTLY- ABLED DATE : 07.05.18-09.06.18 DEPARTMENT : DEPARTMENT OF INFORMATION SCIENCE AND TECHNOLOGY PLACE : COLLEGE OF ENGINEERING, GUINDY CO-ORDINATOR

More information

Getting Started with the Aloha Community Template for Salesforce Identity

Getting Started with the Aloha Community Template for Salesforce Identity Getting Started with the Aloha Community Template for Salesforce Identity Salesforce, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved.

More information

UNO Application for Admissions Guide for Non-UNO Summer Study Abroad Students

UNO Application for Admissions Guide for Non-UNO Summer Study Abroad Students UNO Application for Admissions Guide for Non-UNO Summer Study Abroad Students The purpose of this guide is to assist non-uno students with the UNO application for admission to the Study Abroad program.

More information

Major/Minor Declaration Student Instructions

Major/Minor Declaration Student Instructions Process Overview Major/Minor Declaration Student Instructions Use the Major/Minor Declaration Application to officially declare a major or minor in a field of interest. Prior to declaring a major or minor

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Author: Sparx Systems Date: 10/05/2018 Version: 1.0 CREATED WITH Table of Contents Publish Joomla! Article 3 Install Joomla! Locally 4 Set

More information

Publish Joomla! Article

Publish Joomla! Article Enterprise Architect User Guide Series Publish Joomla! Article Sparx Systems Enterprise Architect supports publishing an entire model, or part of the model, in a local Joomla! Repository as Articles (HTML

More information

PFE Online Application Help File

PFE Online Application Help File PFE Online Application Help File Please follow this step-by-step guide to help complete the PFE online application form for Educational Oversight. (Please note, failure to complete all required information

More information

Partner Side SMART Guide

Partner Side SMART Guide Partner Side SMART Guide Table of Contents 1. Introduction... 3 2. Partner Registration Process... 3 3. Additional Form... 12 4. Scorecard... 13 5. View Buyer Profile... 14 Partner Side User Manual 31

More information

Quick Reference: My BackPack Password Management

Quick Reference: My BackPack Password Management Quick Reference: My BackPack Password Management My BackPack password management policies have changed significantly, to offer a more industry standard password management process. The new features have

More information

Gradintelligence student support FAQs

Gradintelligence student support FAQs Gradintelligence student support FAQs Account activation issues... 2 I have not received my activation link / I cannot find it / it has expired. Please can you send me a new one?... 2 My account is showing

More information

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017 ORAC Match User Manual for Support Workers V1.0 Updated 13/11/2017 1 Contents: The Login Screen: ORAC can be accessed through any web browser, smartphone or tablet via the following link; https://app.orac.support

More information

MeetMe Planner Design description. Version 2.2

MeetMe Planner Design description. Version 2.2 Design description Version 2.2 Revision History Date Version Description Author 2015-07-11 1.0 First version Danijel Sokač Francesco Giarola 2015-14-11 1.1 Mockups update and new use case handling Danijel

More information

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni

Vision Document 2.0 Online Book Store Phase-II. Vamsi Krishna Mummaneni Vision Document 2.0 Online Book Store Phase-II Submitted in partial fulfillment of the requirements of the degree of Master of Software Engineering Vamsi Krishna Mummaneni CIS 895 MSE Project Kansas State

More information

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017

ORAC Match. User Manual for Support Workers. V1.0 Updated 13/11/2017 ORAC Match User Manual for Support Workers V1.0 Updated 13/11/2017 1 Contents: The Login Screen: ORAC can be accessed through any web browser, smartphone or tablet via the following link; https://app.orac.support

More information

PHP and MySQL Programming

PHP and MySQL Programming PHP and MySQL Programming Course PHP - 5 Days - Instructor-led - Hands on Introduction PHP and MySQL are two of today s most popular, open-source tools for server-side web programming. In this five day,

More information

2018 Equal Justice Works Conference and Career Fair User Guide

2018 Equal Justice Works Conference and Career Fair User Guide 2018 Equal Justice Works Conference and Career Fair User Guide Friday and Saturday, October 26 and 27 Hyatt Regency Crystal City Arlington, VA The Conference and Career Fair online system will allow you

More information

Job Seeker MILogin Account Setup Process

Job Seeker MILogin Account Setup Process The Pure Michigan Talent Connect (PMTC) MILogin system enhancements will help simplify and enhance the online experience for job seekers and unemployment insurance claimants. This information will assist

More information

Web CMS Sub Administrator Training

Web CMS Sub Administrator Training Web CMS Sub Administrator Training - Introduction... 2 User Administration... 2 User Roles... 2 Administrator... 2 Sub Administrator... 2 Content Contributor... 2 Site User... 3 Overview of User Management...

More information

Brightspyre FAQs Documentation

Brightspyre FAQs Documentation Brightspyre FAQs Documentation Release 1.1 Brightspyre January 19, 2015 Contents 1 What is BrightSpyre.com? 1 2 Contents: 3 2.1 Sign Up or Membership......................................... 3 2.2 User

More information

Resellers Guide Managing your Reseller Account

Resellers Guide Managing your Reseller Account Resellers Guide Managing your Reseller Account Read our Blog: http://blog.webfusion.co.uk/ View our support site: http://webfusion-support.co.uk/ Follow us on Twitter: http://twitter.com/webfusionuk Contents

More information

Sponsor Documentation

Sponsor Documentation CHAPTER 17 This chapter provides user documentation for sponsor users who create guest accounts. It contains the following sections: Introduction to Cisco NAC Guest Server Connecting to the Cisco NAC Guest

More information

4-H Scholarship Application

4-H Scholarship Application 4-H Scholarship Application User Guide Application Process URL: https://4hscholarship.tennessee.edu/ Step 1: Registration When first visiting the 4-H Scholarship page, there are two ways in which a user

More information

BLACKBOARD TRAINING PHASE 1 CONTENT MANAGEMENT. Popular Topics Part 2 Content Management, page 8-17

BLACKBOARD TRAINING PHASE 1 CONTENT MANAGEMENT. Popular Topics Part 2 Content Management, page 8-17 BLACKBOARD TRAINING PHASE 1 CONTENT MANAGEMENT Popular Topics Part 2 Content Management, page 8-17 Table of Content Learning Outcomes:... 3 PART 1 Get started: Introduction to Blackboard Virtual Learning

More information

NAU IRBNet Application

NAU IRBNet Application NAU IRBNet Application Guidance for NAU Research Application Revised 17-0202 Go to IRBNet Website address: irbnet.org/release/index.html Login to your account - Enter your Username and Password and select

More information

Using Google sites. Table of Contents

Using Google sites. Table of Contents Using Google sites Introduction This manual is intended to be used by those attempting to create web-based portfolios. It s contents hold step by step procedures for various aspects of portfolio creation

More information

CAMPUS PORTAL QUICK REFERENCE GUIDE: STUDENT PORTAL

CAMPUS PORTAL QUICK REFERENCE GUIDE: STUDENT PORTAL CAMPUS PORTAL QUICK REFERENCE GUIDE: STUDENT PORTAL 1 CONTENTS How to Set Up Your Portal Web Account... 3 How to Personalize Your Homepage... 4 How to View Holds Applied to Your Portal Account... 4 How

More information

User Manual. MDWorkflow. Web Application from Midrange Dynamics

User Manual. MDWorkflow. Web Application from Midrange Dynamics User Manual MDWorkflow Web Application from Midrange Dynamics (Version 7.1) Tel. +41 (41) 710 27 77, Fax +41 (41) 710 95 87, www.midrangedynamics.com 1 / 36 MDWorkflow - Table of Contents 1 INTRODUCTION...

More information

IMPORTANT INFORMATION

IMPORTANT INFORMATION 1 2 IMPORTANT INFORMATION Follow these simple steps to apply for a job with the Person County Government. You must have a valid personal email account BEFORE you begin. This guide may be used by new applicants

More information

What is SQL? Toolkit for this guide. Learning SQL Using phpmyadmin

What is SQL? Toolkit for this guide. Learning SQL Using phpmyadmin http://www.php-editors.com/articles/sql_phpmyadmin.php 1 of 8 Members Login User Name: Article: Learning SQL using phpmyadmin Password: Remember Me? register now! Main Menu PHP Tools PHP Help Request PHP

More information

NAU New Project Submission. Guidance for creating a new project

NAU New Project Submission. Guidance for creating a new project NAU New Project Submission Guidance for creating a new project Go to IRBNet Website address: https://www.irbnet.org/release/index.html Login to your account Enter your Username and Password and select

More information

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Phone:

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad   Phone: E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Email: AhmadNassr@gmail.com Phone: 0599042502 1. Rationale This is the major project for both (Open Source and.net teams) as an E-Commerce

More information

Desire2Learn eportfolio

Desire2Learn eportfolio This training guide will provide you with the skills to create and manage an online repository for storing your digital artefacts and experiences. can be used by students and academics alike, to record

More information

BrandingUI (Basic, Advanced, Enterprise) Getting Started - Important First Steps

BrandingUI (Basic, Advanced, Enterprise) Getting Started - Important First Steps BrandingUI (Basic, Advanced, Enterprise) Getting Started - Important First Steps Step 1: Log into your BrandingUI Administrative site https:// yourclientid.brandingui.com/admin-signin.php Use the initial

More information

The following document should serve as a user guide to Supplier users. When using the UCSP website, please refer to this document.

The following document should serve as a user guide to Supplier users. When using the UCSP website, please refer to this document. UCSP WEBSITE USER GUIDE The following document should serve as a user guide to Supplier users. When using the UCSP website, please refer to this document. If you should have any issues or comments, please

More information

A Learning Management System for Professionals Who Protect the Public s Health. User QuickGuide

A Learning Management System for Professionals Who Protect the Public s Health. User QuickGuide A Learning Management System for Professionals Who Protect the Public s Health User QuickGuide How to login to MRC-TRAIN 1. Type https://www.mrc.train.org into the address field of your browser. 2. Enter

More information

DigiCert User Guide (GÉANT)

DigiCert User Guide (GÉANT) DigiCert User Guide (GÉANT) Version 8.3 Table of Contents 1 User Management... 10 1.1 Roles and Account Access... 10 1.1.1 Administrator Role... 10 1.1.2 User Role... 10 1.1.3 EV Verified User... 10 1.1.4

More information

Accessing WebMail. Logging In. Check your Mail. Main Mail Screen. Reading Messages. Search. Sending a new message

Accessing WebMail. Logging In. Check your Mail. Main Mail Screen. Reading Messages. Search. Sending a new message WebMail Help User Manual Index Accessing WebMail Logging In Check your Mail Main Mail Screen Reading Messages Search Sending a new message Address book Spelling Attaching files Html Text Managing addresses

More information

DRACULA. CSM Turner Connor Taylor, Trevor Worth June 18th, 2015

DRACULA. CSM Turner Connor Taylor, Trevor Worth June 18th, 2015 DRACULA CSM Turner Connor Taylor, Trevor Worth June 18th, 2015 Acknowledgments Support for this work was provided by the National Science Foundation Award No. CMMI-1304383 and CMMI-1234859. Any opinions,

More information

PHPBasket 4 Administrator Documentation

PHPBasket 4 Administrator Documentation PHPBasket 4 Please ensure you have the latest version of this document from http://www.phpbasket.com Contents CONTENTS 2 REQUIREMENTS 3 INSTALLATION 4 PREPARATION 4 UPLOAD 4 INSTALLATION 4 ADMINISTRATOR

More information

HireaHawk Job Posting Instructions

HireaHawk Job Posting Instructions HireaHawk Job Posting Instructions TABLE OF CONTENTS We highly encourage you to start at STEP I. These instructions will take you through posting a job and all the options that you have related to your

More information

Important items to note before you get started:

Important items to note before you get started: Engineering econnection Students Help http://www.egr.uh.edu/careert The Table of Contents below is hyperlinked to the section described. Important items to note before you get started: Navigate the Homepage

More information

ROAMpay TM. X4 User's Guide

ROAMpay TM. X4 User's Guide ROAMpay TM X4 User's Guide Last Modified: 06/14/2013 Contents 1 Activating ROAMpay X4 2 Using the System 2 Login 2 First-time Login 2 Default Settings 3 Retrieving Your Password 3 Online Sales 4 Saved

More information

Development of E-learning Contents for Exchange Students

Development of E-learning Contents for Exchange Students Development of E-learning Contents for Exchange Students Kuniaki YAJIMA #1, Jarmo Seppälä *2, Akihiro NITTA #1 # Department of Information networks, Hirose campus, Sendai College, Institute National of

More information

Go to the Directory at and click on the Login link.

Go to the Directory at  and click on the Login link. Welcome to Terra Dotta s Study Abroad Directory! Creating your programs for the directory is a simple task. These instructions will outline how to create, activate and update your program brochures. Logging

More information

Training Guide Employee Self Service Candidate Gateway Apply

Training Guide Employee Self Service Candidate Gateway Apply Employee Self Service Candidate Gateway Page i ESS - Candidate Gateway - Candidate Gateway enables internal applicants (employees) to: Submit job applications and resumes without applying to a specific

More information

Easy Comext (or Easy XTnet) is an HTML based interface giving to the public at Eurostat s External Trade database.

Easy Comext (or Easy XTnet) is an HTML based interface giving to the public at Eurostat s External Trade database. QUICK GUIDE TO EASY COMEXT Contents Preface Main toolbars Register (first time) Make an extraction Display the results of an extraction Access to metadata Retrieve a saved query Downloads Preface Easy

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

ServiceNow: User Guide

ServiceNow: User Guide ServiceNow: User Guide Spring 2018, Version 2 Table of Contents Introduction... 2 Logging In... 2 Overview of the User Interface... 2 Banner Frame... 3 Navigation Bar... 3 Content Frame... 4 Reporting

More information

The Content Editor UBC Department of Botany Website

The Content Editor UBC Department of Botany Website The Content Editor UBC Department of Botany Website Prepared by: IT Support Jan 2015 0 Table of Contents SECTION I: BACKGROUND AND PURPOSE... 3 SECTION II: LOGGING IN TO THE DEPARTMENT OF BOTANY WEBSITE...

More information