R
E
S
O
U
R
C
E
S
       Home      Products & Services      Contact Us      Links


WebHatchers will design & develop your site for you.
_______________________

Website Menu Heaven: menus, buttons, etc.
_______________________

Send us your questions.
_______________________

site search by freefind
_______________________

HOME
SEO, Google, Privacy
   and Anonymity
Browser Insanity
JavaScript
Popups and Tooltips
Free Website Search
HTML Form Creator
Animation
Buttons and Menus
Counters
Captchas
Image Uploading
CSS and HTML
PHP
AJAX
XPATH
Website Poll
IM and Texting
Databases—MySQL
   or Not MySQL
Personal Status Boards
Content Management
   Systems
Article Content
   Management Systems
Website Directory
   CMS Systems
Photo Gallery CMS
Forum CMS
Blog CMS
Customer Records
   Management CMS
Address Book CMS
Private Messaging CMS
Chat Room CMS
JavaScript Charts
   and Graphs




Free Personal Status Boards (PSB™)

Free Standard Free PSB

Free PSB Pro Version

Free Social PSB

Free Social PSB Plus (with Email)

Free Business PSB

Free Business PSB Plus (with Email)

PSB demo

Social PSB demo

Business PSB demo

So what's all this PSB stuff about?

Chart comparing business status boards

PSB hosting diagram

PSB Licence Agreement



Copyright © 2002 -
MCS Investments, Inc. sitemap

PSBs, social networking, social evolution, microcommunities, personal status boards
PSBs, social networking, business personal status boards
website design, ecommerce solutions
website menus, buttons, image rotators
Ez-Architect, home design software
the magic carpet and the cement wall, children's adventure book
the squirrel valley railroad, model railroad videos, model train dvds
the deep rock railroad, model railroad videos, model train dvds

View Profile in Form Creator Form CMS

This script is called view-profile_.php

The View Profile in Form Creator Form CMS script is one of a group of PHP scripts that handle both the administrative and end-user aspects of a general purpose HTML Form Creator that allows not just input boxes but multiple selection enabled select/option lists as well. In addition to the expectable editing scripts for both administrative and end-user functions, there's also a Search and Match script so that users can use the scripts to find other users with various individual or group commonalities, including proximity searches, i.e., find all the users within various distances. There are even private messaging scripts.

The purpose of this script is to provide a way in which the user can view his user profile.

First, we start up a session (in the checkid_.php script) and include the config.php script to ensure that our connection to our database is made correctly. This file has the codes below in it:

$theemailaddress = "yoursite@yoursite.com"; //EDIT ME
$roothostname = "localhost";
$theusername = "yourusername"; //EDIT ME
$thepassword = "yourpassword"; //EDIT ME
$thedatabasename = "yourdb"; //EDIT ME
mysql_connect("".$roothostname."","".$theusername."","".$thepassword."") or die(mysql_error());
mysql_select_db("".$thedatabasename."") or die(mysql_error());

We also use the checkid_.php script to ensure that the session id variable is set, and send the user to register-with-captcha_.php if it is not. Then we put the session variable 'username' into $U—we will be checking that it is set in a second. Then we define a named constant '_NODIRECTACCESS'. We include the config.php file (in the includes folder) which uses the PHP defined() function to check on this constant. If it is not set, we are thrown out of the config.php file like yesterday's trash.

Next we check if the session variables 'groupname', 'username', and 'userid' are set. If not, we are sent to the login script. We make sure $U is still equal to the session variable 'username', that it is not an empty string, and that it's at least 6 characters long or . . . you guessed it . . . the login script. We make sure the session id is set and send them away if not.

In the PHP section, we use the SELECT statement to select data from the database table my_members. The * tells the script we want everything, but the WHERE username = '$U' statement limits the "everything" to everything in this user's record. We use the mysql_fetch_array() function to get the result set from the SELECT MySQL query into an array.

We put a link, Return to Profile and Account Management, at the top of the display on the web page to allow easy exit. As we display the contents of the user's record/row, the htmlentities() function and the stripslashes() function are used for display security.

The script below is called: view-profile_.php


<?php

include_once"checkid_.php";
$U=$_SESSION['username'];
define('_NODIRECTACCESS', TRUE);
include_once"includes/config.php";
if (!isset($_SESSION['groupname']) || !isset($_SESSION['userid']) || !isset($_SESSION['username']) || $_SESSION['username']<>$U || !isset($U) || $U=="" || strlen($U)<6 || !isset($_SESSION['sessionid'])){echo '<script language="javascript">alert("Please login."); window.location = "login_.php";</script>';}

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252" >
<TITLE>View Profile</TITLE>
<meta name="description" content="View Profile">
<meta name="keywords" content="View Profile,View Profile,profile,account,my account,view account,javascript, dhtml, DHTML">
<style type="text/css">
BODY {margin-left:0; margin-right:0; margin-top:0;text-align:left}
td {font:normal 13px Verdana; color:black;text-align:left;padding:0 6px 0 6px}
h1 {font:bold 28px Verdana; color:black;text-align:center}
h2 {font:bold 24px Verdana;text-align:center}
h3 {font:bold 15px Verdana;}
#c {width:100%;text-align:center}
#t {margin-left:auto !important;margin-right:auto !important;padding:20px;border:2px solid blue;background-color:#eee;}
</style>
<script language="javascript">
mactest=(navigator.userAgent.indexOf("Mac")!=-1)
Netscape=(navigator.appName.indexOf("Netscape") != -1)
msafari=(navigator.userAgent.indexOf("Safari")!= -1)
wsafari=0; if(!mactest&&msafari){wsafari=1;msafari=0}
is_opera = 0; if(window.opera){is_opera=1}
is_ie_mac = 0; is_ie=0;if(document.all){is_ie=1}
if(is_ie&&mactest){is_ie_mac=1}

function fixwidth(){if(mactest&&!msafari&&is_ie_mac){alert("This browser is dead. Please use Firefox or Safari.");}}

</script>
</head>
<body onload="fixwidth()">

<center><h1>View Membership Data</h1></center>

<?php

$result = mysql_query("SELECT * FROM my_members WHERE username = '$U'") or die(mysql_error());
$row = mysql_fetch_array($result);
echo "<center><table border='0' cellspacing='5' cellpadding='5' id='t'>";
echo "<tr><td><a HREF='profile-and-account-management.php'><center>Return to Profile and Account Management</center></a><tr><td>&nbsp;</td></tr>";
echo "<tr><th style='text-align:center;font-size:18px;color:blue'><b>".htmlentities(stripslashes($row['username']), ENT_QUOTES)."'s Membership</b></th></tr><tr><td><hr></th></tr>";
echo "<tr><td style='text-align:left'><b>Group Name:</b> ".htmlentities(stripslashes($row['groupname']), ENT_QUOTES)."</td></tr>";
echo "<tr><td style='text-align:left'><b>Location:</b> ".htmlentities(stripslashes($row['city']), ENT_QUOTES).", ";
echo htmlentities(stripslashes($row['state']), ENT_QUOTES)." ";
echo htmlentities(stripslashes($row['zip']), ENT_QUOTES)."</td></tr>";
echo "<tr><td style='text-align:left'><b>ID:</b> ".htmlentities(stripslashes($row['id']), ENT_QUOTES)."</td></tr>";
echo "<tr><td style='text-align:left'><b>User Name:</b> ".htmlentities(stripslashes($row['username']), ENT_QUOTES)."</td></tr>";
echo "<tr><td style='text-align:left'><b>Email Address:</b> ".htmlentities(stripslashes($row['email']), ENT_QUOTES)."</td></tr>";
echo "<tr><td style='text-align:left'><b>IP:</b> ".htmlentities(stripslashes($row['ip']), ENT_QUOTES)."</td></tr>";
echo "<tr><td style='text-align:left'><b>Signup Date:</b> ".htmlentities(stripslashes($row['signup_date']), ENT_QUOTES)."</td></tr><br></table></center><BR>";

mysql_close();

?>

</body>
</html>