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
Profiles
Moderator: General Moderators
- raghavan20
- DevNet Resident
- Posts: 1451
- Joined: Sat Jun 11, 2005 6:57 am
- Location: London, UK
- Contact:
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>