Profiles

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
davewatson
Forum Newbie
Posts: 1
Joined: Tue Feb 07, 2006 11:58 am

Profiles

Post by davewatson »

Hi,

Im new to the forums, so i am not sure how they work but i need a little help.

Basically, im building a web site for a dance agency. They have lots of performers and what they want is profiles for each member. Do any of you know where i can get a php application - where in which it can display a photograph, statistic information, and a small biography. Similar to model agency web sites.

I would appreciate any feedback and help whatsoever!


Look forward to hearing from anyone.

David
User avatar
raghavan20
DevNet Resident
Posts: 1451
Joined: Sat Jun 11, 2005 6:57 am
Location: London, UK
Contact:

Post by raghavan20 »

basically you have to php to provide dynamic content from db to this layout

Code: Select all

<html>
<head>
	<style>
		.wrapper{
			width:600px; border: 2px solid #000000; background-color:#EE4324; margin:5%; height:auto;
			min-height:300px;
		}
		#title{
			background-color:0000FF; color:#FFFFFF;
		}
		#content{
			 padding:15px 20px 5px 20px;
		}
		
	</style>
</head>
<body>
	<div class = 'wrapper'>
		<div id = 'title'>Profile - someName</div>
		<div id = 'content'>
			<div style = 'float:right'>
				<img style = 'height:100px; width:100px;' title = 'photo of dancer' />
			</div>
			Name: someName <br />
			Age: someAge <br />
			Gender: someGender <br />
			Information: someInformation<br />
		</div>
	</div>
</body>
</html>
Post Reply