about.php
account.php
auth.php
contact.php
create.php
edit_schedule.php
faq.php
group_view.php
groups.php
index.php
password.php
register.php
results.php
schedules.ph
p



download
all files

Faq.php Source Code
<?php
session_start();

//GroupAware
//Team 7

function redirect($page){
// redirect user to $page
echo '<script language="JavaScript">window.location.href="'.$page.'"</script>'."\n";
}

function logout() {
// log user out, unregister sessions
unset($_SESSION['sess_userid']);
session_unregister($sess_userid);
session_unset();
session_destroy();
}

if ($HTTP_GET_VARS['action'] == 'logout') {
logout();
redirect('index.php');
}
?>
<html>
<head>
<title>GroupAware</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="group.css" rel="stylesheet" type="text/css">
<link href="blocks.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
@import url("tabs.css");
-->
</style>
</head>

<body link="#003366" vlink="#003366" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" height="125" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="75" valign="bottom" bgcolor="#CCCCCC"><table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td width="125" height="110"><font size="7" face="Arial, Helvetica, sans-serif"><strong><a href="index.php"><img src="groupAwareLogoSm2.gif" alt="logo" width="103" height="99" border="0" align="absmiddle"></a></strong></font></td>
<td><img src="spacer.gif" width="20" height="8"><font size="7" face="Arial, Helvetica, sans-serif"><strong>Group<font color="#003366">Aware</font>
<font size="4"><br>
<img src="spacer.gif" width="150" height="1">Meeting Time Organizer</font></strong></font></td>
<td width="200" valign="top" class="css"> <div align="right"><strong><font size="1"><a href="about.php">
<font size="2">About</font></a><font size="2"> | <a href="faq.php">FAQ</a>
| <a href="contact.php">Contact</a><img src="spacer.gif" width="10" height="8"></font></font></strong>&nbsp;</div></td>
</tr>
</table>
<div align="right">
<table width="200" height="25" border="0" cellpadding="0" cellspacing="0" bordercolor="#660000" class="tabs">
<tr valign="middle" class="tabs">
<td width="100" bgcolor="#660000" class="tabs">
<div align="center"><a href="index.php"><font color="#FFFFFF"><strong>Log
In </strong></font></a></div></td>
<td width="100" bgcolor="#FFFFFF" class="tabs">
<div align="center"><strong><a href="register.php">Register</a></strong></div></td>
</tr>
</table>
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="5" bgcolor="#660000"><img src="spacer.gif" width="1" height="1"></td>
</tr>
</table></td>
</tr>
<!--
<tr>
<td height="7" colspan="2" bgcolor="#660000"><img src="spacer.gif" width="1" height="1"></td>
</tr>
-->
</table>
<br>

<table width="100%" height="80%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" valign="top"> <p align="center" class="css"><font size="4">Frequently
Asked Questions</font></p>
<table width="600" border="0" align="center" cellpadding="5" cellspacing="0" class="css">
<tr bgcolor="#003366">
<td width="200" class="css"><strong><font color="#FFFFFF" size="3">Question</font></strong></td>
<td width="373" class="css"><strong><font color="#FFFFFF" size="3">Answer</font></strong></td>
</tr>
<tr valign="top">
<td width="200"><strong>What is this site?</strong></td>
<td>This web site allows you and team members to compare schedules and
find common times of availability. </td>
</tr>
<tr valign="top" bgcolor="#CCCCCC">
<td width="200" bgcolor="#CCCCCC"> <p><strong>Why is this useful?</strong></p></td>
<td>As a student, you are often times put into teams or groups to complete
projects or other assignments. Finding a time to meet outside of class
can be challenging for people with busy schedules. This site allows
you to enter your schedule once and use it to compare against others.</td>
</tr>
<tr valign="top">
<td width="200"><strong>How do I use the site?</strong></td>
<td> <p>First, create an account.</p>
<p>Once logged in, click &quot;Edit Schedule&quot; at the top. Enter
your schedule and click save.</p>
<p>Then, create a group. You can enter other users to your group and
view a weekly schedule that highlights common availability.</p></td>
</tr>
<tr valign="top" bgcolor="#CCCCCC">
<td width="200">&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
<p align="center" class="css">&nbsp;</p></td>
</tr>
<tr>
<td height="20" colspan="2" valign="top"><div align="center"><font size="1" face="Arial, Helvetica, sans-serif">This
site was created by IST students at The Pennsylvania State University.
Use of this system is subject to the terms and conditions set forth.<br>
Copyright 2005</font><font size="1"><br>
<br>
</font></div></td>
</tr>
</table>
</body>
</html>