sorry, been out all day - my site is local only but I will post some more detailed code, edited a bit to save space:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>movies</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="style1.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="wrapper">
*****user navigation goes here*****
<div id="main">
<div id="moviecollection">
<?php
include 'moviecollection.php';
if ($wishlist == '1')
{
*****some code here to gather movies*****
while ($row = mysqli_fetch_assoc($wishlist)) {
echo '<div id="wishlistwrap">';
echo '<div id="wishlistmovie">';
echo $row["moviename"];
echo '</div>';
echo '<div id="wishlistreleasedate">';
echo $row["wishlistreleasedate"];
echo '</div>';
echo '<div id="wishlistgenre">';
echo $row["genre_abbreviation"];
echo '</div>';
echo '</div>'; // end of wishlistwrap div
}
echo '<br/>';
}
****output of complete list of movies here (those not in wishlist above)****
</div> <!-- end of main div -->
</div> <!-- end of wrapper div -->
</body>
</html>
this is my entire page.
oh and here is the style for my wrapper:
Code:
#wrapper {
border: solid 1px #000000;
width: 740px;
height: 100%;
margin-right: auto;
margin-left: auto;
padding: 5px;
background: #DDDDDD;
}
Bookmarks