Jump to content

Please Help With This Project!


roldahayes

Recommended Posts

Ok, here goes...

 

I've been struggling with for ages and think its time I got some professional help and advise...!

 

What I am trying to do is build a site where a user can register and then login to their own "control panel"

 

From here they can fill in a form that has all the usual fields, name, phone number etc.

 

They need to be able to upload 4 images (that need to be resized to a set size) and then their "page" is viewable on the site by either searching for a postcode or town...

 

Still with me??

 

The page needs to be editable by them as well so they can update information.

 

I have tryed numeriuos scripts and off the shelf packages but they all seem way to complicated for what i actually need.

 

I have moderate knowledge in coding so if anyone can point me in the right direction that would be great.

 

Cheers,

 

Darren

Link to comment
https://forums.phpfreaks.com/topic/121701-please-help-with-this-project/
Share on other sites

I haven't got very far yet!

 

I have the register and login sorted - when you successfully log in it goes to a page called member-index.php

 

<?php
require_once('auth.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Member Index</title>
<link href="loginmodule.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Welcome <?php echo $_SESSION['SESS_FIRST_NAME'];?></h1>
<a href="member-profile.php">My Profile</a> | <a href="logout.php">Logout</a>
<p>This is a password protected area only accessible to members. </p>
</body>
</html>

 

from here you can click through to member-profile.php

 

<?php
require_once('auth.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>My Profile</title>
<link href="loginmodule.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>My Profile </h1>
<a href="member-index.php">Home</a> | <a href="logout.php">Logout</a>
<p>This is another secure page. </p>
</body>
</html>

 

but obviously, these pages need to be unique to each user

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.