Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Timmo

Members
  • Joined

  • Last visited

  1. I'm working on a redesign of Forest Advertising as the last one was rushed and just looks appalling. This is how it looks at the moment http://www.forestadvertising.co.uk and this is what i'm thinking of: Any improvements/amendments I should make before I carry on and start? (bonus point for whoever can guess the program in the bottom left )
  2. Timmo posted a topic in Server Side
    Trying to get the contact form on my site to work. Not that experienced with php so could do with some help please. Here is the code: HTML: <form action="feedback.php" method="post" class="global"> <ul> <li> <label>Full Name</label> <input name="name" id="tswname" type="text" /> </li> <li> <label>Email</label> <input name="email" id="tswemail" type="text" /> </li> <li> <label>Comments</label> <textarea name="comments" id="tswcomments" cols="60" rows="5"></textarea> </li> <li> <input type="submit" name="submit" class="submit" value="SEND YOUR ENQUIRY" /> </li> </ul> </form> PHP: <?php $mailto = 'enquiries@foddesign.co.uk' ; $subject = "FOD Design Feedback Form" ; $formurl = "http://www.foddesign.co.uk/contact.html" ; $errorurl = "http://www.foddesign.co.uk/error.html" ; $thankyouurl = "http://www.foddesign.co.uk/thanks.html" ; $email_is_required = 1; $name_is_required = 1; $comments_is_required = 1; $uself = 0; $use_envsender = 0; $use_sendmailfrom = 0; $use_webmaster_email_for_from = 0; $use_utf8 = 1; $my_recaptcha_private_key = '' ; $headersep = (!isset( $uself ) || ($uself == 0)) ? "\r\n" : "\n" ; $content_type = (!isset( $use_utf8 ) || ($use_utf8 == 0)) ? 'Content-Type: text/plain; charset="iso-8859-1"' : 'Content-Type: text/plain; charset="utf-8"' ; if (!isset( $use_envsender )) { $use_envsender = 0 ; } if (isset( $use_sendmailfrom ) && $use_sendmailfrom) { ini_set( 'sendmail_from', $mailto ); } $envsender = "-f$mailto" ; $fullname = (isset($_POST['name']))? $_POST['name'] : $_POST['name'] ; $email = $_POST['email'] ; $comments = $_POST['comments'] ; $http_referrer = getenv( "HTTP_REFERER" ); if (!isset($_POST['email'])) { header( "Location: $formurl" ); exit ; } if (($email_is_required && (empty($email) || !preg_match('/@/', $email))) || ($name_is_required && empty($name)) || ($comments_is_required && empty($comments))) { header( "Location: $errorurl" ); exit ; } if ( preg_match( "/[\r\n]/", $name ) || preg_match( "/[\r\n]/", $email ) ) { header( "Location: $errorurl" ); exit ; } if (strlen( $my_recaptcha_private_key )) { require_once( 'recaptchalib.php' ); $resp = recaptcha_check_answer ( $my_recaptcha_private_key, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] ); if (!$resp->is_valid) { header( "Location: $errorurl" ); exit ; } } if (empty($email)) { $email = $mailto ; } $fromemail = (!isset( $use_webmaster_email_for_from ) || ($use_webmaster_email_for_from == 0)) ? $email : $mailto ; if (function_exists( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc()) { $comments = stripslashes( $comments ); } $messageproper = "This message was sent from:\n" . "$http_referrer\n" . "------------------------------------------------------------\n" . "Name of sender: $name\n" . "Email of sender: $email\n" . "------------------------- COMMENTS -------------------------\n\n" . $comments . "\n\n------------------------------------------------------------\n" ; $headers = "From: \"$name\" <$fromemail>" . $headersep . "Reply-To: \"$name\" <$email>" . $headersep . "X-Mailer: chfeedback.php 2.15.0" . $headersep . 'MIME-Version: 1.0' . $headersep . $content_type ; if ($use_envsender) { mail($mailto, $subject, $messageproper, $headers, $envsender ); } else { mail($mailto, $subject, $messageproper, $headers ); } header( "Location: $thankyouurl" ); exit ; ?> It would be very appreciated if some could help me with this. At the moment when I submit the form it takes me to my error page.
  3. Don't make a website using tables, use CSS. If your not sure how this should help: http://www.code-sucks.com/css%20layouts/fixed-width-css-layouts/
  4. I've decided to redesign one of my websites, as it looks dated now and I am trying to implement a dual navigation bar and I am struggling quite a bit with it. I would like it to look like this: http://www.alistapart.com/d/hybrid/hybrid-4.html (http://www.alistapart.com/articles/hybrid/) Would anyone be able to help me install it onto my site please? Cheers Timmo
  5. Hey all, just launched my new site,let me know what you think. FOD Design
  6. I've been asked by someone to find them a decent looking business directory template for them to use that is fairly easy to update and add entries etc and also looks ok. Anyone know where I can find one?
  7. Hey All, I have been working on a project and I have finally finished it. The site is called Animal Rehome, it is an animal rehoming site for all types of animal rehoming centres accross the UK. I have got it hosted on a free server so you can see the site. Obviously it needs alot more content and will load quite slow whilst on the free server. Animal Rehome Any donations for proper hosting will be very very appreciated.
  8. I have got 17 seperate sites that all need to have seperate hosting but I need them all on the same one account. What is the best hosting service to do this?
  9. I've been working on a new site for a while now after making several ones and being rushed have not been happy with how they look etc etc. Here is what i've come up with so far: FOD Design | Website design | Graphic design | Based in the Forest of Dean, UK | Homepage Opinions are appreciated and it's obviously still not completeley finished either.
  10. Ok I have finished it now. What is everyones opinion? http://www.foddesign.co.uk
  11. Hey all just started to redesign my site. What do you all think? http://www.foddesign.co.uk/test Only the home page is done so far.
  12. Been tweaking away at my site again. What do you all think?
  13. Pretty much finished now. What do you think?
  14. I need to implement a site search on my website. What is the best way for me to do this? It is for an advertising site so that visitors can search for businesses.
  15. Timmo replied to Timmo's topic in Frontend
    Cheers, i'll add that to my lil book

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.