Porkie Posted September 4, 2009 Share Posted September 4, 2009 hey im very confused and was wondering if someone could give me a pointer in helping me to, <form method="post" enctype="multipart/form-data"> <br /> Email: <input type="email" name="email" value="<?php echo $stuff['email']; ?>" /><br /><br /> Membership Type: <select name="type"> <option value="Music Enthusiast">Music Enthusiast</option> <option value="Band Member"<?php if ($stuff['type'] == 'Band Member') { echo ' Selected="selected"'; } ?>>Band Member</option> </select><br /><br /> <input type="submit" name="updatedetails" value="Update" /> </form> to work with my div code, echo '<div id="rightcol">'; also how come a make my column be just 50px from the top of the page? Any help is greatly appreciated Cheers Link to comment https://forums.phpfreaks.com/topic/173123-html-and-php-divs/ Share on other sites More sharing options...
robert_gsfame Posted September 4, 2009 Share Posted September 4, 2009 You can work with your div inside <head>, like this: <head> <style="text/css"> #div3{ position:absolute; left:15px; top:19px; width:23px; height:32px; } <style> </head> <body><?php echo "<div id=div3></div>";?></body> hope this is what you're lookin for Link to comment https://forums.phpfreaks.com/topic/173123-html-and-php-divs/#findComment-912494 Share on other sites More sharing options...
Porkie Posted September 4, 2009 Author Share Posted September 4, 2009 nah its just how i would put that data into my div tags so it worked? Link to comment https://forums.phpfreaks.com/topic/173123-html-and-php-divs/#findComment-912514 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.