Jump to content

doctortim

Members
  • Posts

    30
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

doctortim's Achievements

Member

Member (2/5)

0

Reputation

  1. Thank you Maq for some maturity. Haku, please take a deep breath and look back through this thread: I asked a question politely (probably in the wrong topic...sure, I get that part!) and all i needed to be told was the correct protocol for having my question answered - not to bluntly be reminded of the subject matter of the thread. Don't comment in my thread if you can't advance the discussion.
  2. Hi guys setting up the layout div's for a new website. Essentially i have three divs that will act as columns. I want a central (centred) column of fixed width 1000px. and the left and right columns to scale their width according to the remaning screen width. The three columns currently sit inside an overall container div. Here is the code: HTML ... <div id="container"> <div id="left_header"></div> <div id="central_header"></div> <div id="right_header"></div> </div> and CSS ... body {margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; } #container {height:200px; width:100%;} #left_header {float:left; height:200px; width:100px; background-image: url(img/heading-left.png);background-repeat: repeat-x;background-position: left top;} #central_header {float:left; height:250px; width:1000px; background-image: url(img/main_header.png); background-position: left top;} #right_header {float:left; height:200px; width:100px; background-image: url(img/heading-right.png); background-repeat:repeat-x; background-position: left top
  3. dadamssg you only waste your time when you write something like that ^ ... tool
  4. piss off! why waste your time writing that. I'm not joining a new forum to ask a simple question many people here will be able to help with in a minute of their time. Any genuine helpers please?
  5. Hi guys setting up the layout div's for a new website. Essentially i have three divs that will act as columns. I want a central (centred) column of fixed width 1000px. and the left and right columns to scale their width according to the remaning screen width. The three columns currently sit inside an overall container div. Here is the code: HTML ... <div id="container"> <div id="left_header"></div> <div id="central_header"></div> <div id="right_header"></div> </div> and CSS ... body {margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; } #container {height:200px; width:100%;} #left_header {float:left; height:200px; width:100px; background-image: url(img/heading-left.png);background-repeat: repeat-x;background-position: left top;} #central_header {float:left; height:250px; width:1000px; background-image: url(img/main_header.png); background-position: left top;} #right_header {float:left; height:200px; width:100px; background-image: url(img/heading-right.png); background-repeat:repeat-x; background-position: left top;}
  6. Hi guys, Have an important website ready to go live tomorrow night, so any help would be greatly appreciated, anyway... Problem with the contact form, I'm testing it locally (the php and form are on the one page 'contact.php' and the form action posts to itself). Mail is being sent (I expect tha since I'm testing locally), but when I leave the name or email field blank, I dont even trigger my errors. Here is my code: The PHP: <?php // Address error handing. ini_set ('display_errors', 1); error_reporting (E_ALL & ~E_NOTICE); // Check if the form has been submitted. if ( isset ($_POST['submit'])) { $problem = FALSE; // No problems so far. // Check for each value. if (empty ($_POST['name'])) { $problem = TRUE; print '<div id="email_warnings">Please enter your name!</div>'; } if (empty ($_POST['email'])) { $problem = TRUE; print '<div id="email_warnings">Please enter your email address!</div>'; } if (!$problem) { // If there weren't any problems... print '<div id="email_warnings">Your message has been sent<br />Thank You!</div>'; // Send the email. $email_to = '[email protected]'; $subject = $_POST['enquiry_type']; $body = "A contact form email has been received !!/n/n". "The message is from ".$_POST['name'].", with email: ".$_POST['email']."/n/n". "Message Sent: "."/n/n". $_POST['message_body']; mail($email_to, $subject, $body); } else { // Forgot a field. print '<div id="email_warnings">Please try again!</p></div>'; } } ?> Then I have the contact form right after: <form action="contact.php" method="post"> <table class="table_margin" width="343" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="129" align="right" valign="top"><em>Name</em></td> <td width="180" class="cell_margin"><label> <input name="name" type="text" id="textfield" value="first and last name" size="24" /> </label></td> </tr> <tr> <td align="right" valign="top"> </td> <td class="cell_margin"> </td> </tr> <tr> <td align="right" valign="top"><em>Email</em></td> <td class="cell_margin"><input name="email" type="text" id="textfield2" value="[email protected]" size="24" /></td> </tr> <tr> <td align="right" valign="top"> </td> <td class="cell_margin"> </td> </tr> <tr> <td align="right" valign="top"><em>Enquiry</em></td> <td class="cell_margin"><label> <select name="enquiry_type" id="select"> <option value="sale">Sales & Order Enquiry</option> <option value="feedback">General Feedback</option> <option value="issue">Website Issue</option> </select> </label></td> </tr> <tr> <td align="right" valign="top"> </td> <td class="cell_margin"> </td> </tr> <tr> <td align="right" valign="top"><em>Message</em></td> <td class="cell_margin"><label> <textarea name="message_body" id="textarea" cols="45" rows="5">Type your message here ...</textarea> </label></td> </tr> <tr> <td align="right" valign="top"> </td> <td class="cell_margin"> </td> </tr> <tr> <td align="right" valign="top"> </td> <td class="cell_margin"><label> <input type="submit" name="button" id="button" value="Submit" /> </label></td> </tr> </table> </form> Thanks guys!
×
×
  • 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.