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.

Tander

Members
  • Joined

  • Last visited

Everything posted by Tander

  1. Thanks for that. Really good advice, will do it that way first!
  2. Howzit guys I was wondering if its a good idea to design a site in photoshop first to get an idea of what I want....then code it in html/css ect? How best to go about making a new site? Thanks all!
  3. Please excusse me if I am completely off track.. But isnt loading images like this going to really slow the site down...also if someone views it with images turned off its not going to look right?
  4. I'm sorry to jump in here; however what do you mean by tables? Because I have made a website, and used a table to just put some prices into. The rest of the website is CSS/HTML...Is this a bad thing? Please clarify?
  5. As above, doing it that way would've really been over the top!
  6. I'm sure someone will be along to help you. All I wanted to say that I love that layout, looks really, really good.
  7. Tander replied to Tander's topic in Frontend
    I am looking for a gallery that has can do: Devide the photos into a few different sections. Display them one at a time on screen with some text under/next to the loaded image For all photos under one section ect to be displayed in small box, then when clicked, it gets bigger. Thanks!
  8. Tander replied to Tander's topic in Frontend
    I've seen one I really like on the site, however I cannot find a download link for it....am I blind or something? Many thanks for all the links, much appreciated!
  9. Tander replied to Tander's topic in Frontend
    I gave it ago, but doesn't look like it will work the way I need it to work. Any more suggestions, guys? Thanks!!
  10. Tander replied to Tander's topic in Frontend
    Hi, Thanks I will give that site a look at.
  11. Tander posted a topic in Frontend
    Howzit guys. I have a website to do where the client wants, 40 Images loaded. Now there a three themes for the images (Flowers, wildlife, ect, ect ) I would like to have a gallary script of some kind that will allow a visiter to view each picture on it's own, (Pressing next or something) and under each picture, I would like a small describtion, eg, price (she's an artist) type of painting ect. Are there any such gallary scripts out there for this? Many thanks!
  12. As above, it's working fine here for me, too. I am using Opera 9.5 on Windows Vista Ultimate.
  13. Tander replied to Tander's topic in Frontend
    Hi, zilli Thank you for the link, I will have a look at it.
  14. I think they do, Dizi! Thanks!
  15. Hi, Thomas. Yes, it's a South African thing we have. Just like you British say, "Easy mate" ( Or similer, werid greetings ) I was also there in the UK for five years, so I know some of the, "lingo" used there. Thanks for the welcome!
  16. I think it's too late for that.....I passed a sign, that read, " The point of no return." Guess there's no going back, now?
  17. Ha ha ha, thanks for the welcome guys. I didn't expect such a quick load of replies. On previous forums, I waiting years for a single reply... Hmmm...I'm going to like it here.... Can I stay?
  18. Tander posted a topic in Frontend
    Howzit guys. I've worked with CSS for a while now. However it's only been using free templates avalible on the Internet. I now, would like to start my own CSS/HTML. What I would like to know is: 1. How do you start one off from scratch? ( The CSS File ) 2. As above, but the HTML file. 3. Do you guys start with a peice of papper of what you want the site to look like, then go to CSS/HTML editing? I really want to do a new site, completely by my self, no free templates ect or anything like that. With the graphics section, do you guys use Photoshop ect and do you make the size smaller for slow Internet users? Any help, would be greatly appreicated! Many Thanks!
  19. Howzit guys. My Name is, Robert. Joined here to learn more on CSS and HTL, as well as PHP and Java at some stage. Also to help others, where I can. I am new to this though....wish me luck? BTW: I'm in Durban, South Africa!
  20. I just need to figure out how to edit the, message sent page to look a little better.
  21. Excellent, all working now. :D Thank you, Pat!
  22. Hi Pat, Okay, I will give it ago now. Thank you very much.
  23. Here's the form.php code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>My Email Form</title> </head> <body> <?php function clean($data) { $data = trim(stripslashes(strip_tags($data))); return $data; } $exploits = "/(content-type|bcc:|cc:|document.cookie|onclick|onload|javascript|alert)/i"; $profanity = "/(beastial|bestial|blowjob|clit|cum|cunilingus|cunillingus|cunnilingus|****|ej culate|fag|felatio|fellatio|****|fuk|fuks|gangbang|gangbanged|gangbangs|hotsex|j sm|jiz|orgasim|orgasims|orgasm|orgasms|phonesex|phuk|phuq|porn|pussies|pussy|spu k|xxx)/i"; $spamwords = "/(viagra|phentermine|tramadol|adipex|advai|alprazolam|ambien|ambian|amoxicilli |antivert|blackjack|backgammon|texas|holdem|poker|carisoprodol|ciara|ciprofloxac n|debt|dating|porn)/i"; $bots = "/(Indy|Blaiz|Java|libwww-perl|Python|OutfoxBot|User-Agent|PycURL|AlphaServer)/i"; if (preg_match($bots, $_SERVER['HTTP_USER_AGENT'])) { exit("<p>Known spam bots are not allowed.</p>"); } foreach ($_POST as $key => $val) { $c[$key] = clean($val); if (preg_match($exploits, $val)) { exit("<p>Exploits/malicious scripting attributes aren't allowed.</p>"); } elseif (preg_match($profanity, $val) || preg_match($spamwords, $val)) { exit("<p>That kind of language is not allowed through our form.</p>"); } } $show_form = true; $error_msg = NULL; if (isset($c['submit'])) { if (empty($c['name']) || empty($c['email']) || empty($c['comments'])) { $error_msg .= "Name, e-mail and comments are required fields. \n"; } elseif (strlen($c['name']) > 15) { $error_msg .= "The name field is limited at 15 characters. Your first name or nickname will do! \n"; } elseif (!ereg("^[A-Za-z' -]", $c['name'])) { $error_msg .= "The name field must not contain special characters. \n"; } elseif (!ereg("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,6})$",strtolower($c['email']))) { $error_msg .= "That is not a valid e-mail address. \n"; } if ($error_msg == NULL) { $show_form = false; if (!empty($c['url']) && !ereg("^(http|https)", $c['url'])) { $c['url'] = "http://" . $c['url']; } $subject = "Automatic Form Email"; $message = "You received this e-mail message through your website: \n\n"; foreach ($c as $key => $val) { $message .= ucwords($key) . ": $val \n"; } $message .= "IP: {$_SERVER['REMOTE_ADDR']} \n"; $message .= "Browser: {$_SERVER['HTTP_USER_AGENT']}"; if (strstr($_SERVER['SERVER_SOFTWARE'], "Win")) { $headers = "From: Robert@rjwebdesigns.co.za \n"; $headers .= "Reply-To: {$c['email']}"; } else { $headers = "From: R.J Webdesigns <robert@rjwebdesigns.co.za> \n"; $headers .= "Reply-To: {$c['email']}"; } $recipient = "robert@rjwebdesigns.co.za"; if (mail($recipient,$subject,$message,$headers)) { echo "<p>Your mail was successfully sent.</p>"; } else { echo "<p>Your mail could not be sent this time.</p>"; } } } if (!isset($c['submit']) || $show_form == true) { function get_data($var) { global $c; if (isset($c[$var])) { echo $c[$var]; } } if ($error_msg != NULL) { echo "<p><strong style='color: red;'>ERROR:</strong><br />"; echo nl2br($error_msg) . "</p>"; } ?> <form action="form.php" method="post"><p> <label><input type="text" name="name" id="name" value="<?php get_data("name"); ?>" /> Name</label><br /> <label><input type="text" name="email" id="email" value="<?php get_data("email"); ?>" /> E-mail</label><br /> <label><input type="text" name="url" id="url" value="<?php get_data("url"); ?>" /> Website</label><br /> <label><input type="text" name="location" id="location" value="<?php get_data("location"); ?>" /> Location</label><br /> <label><textarea name="comments" id="comments"><?php get_data("comments"); ?></textarea> Comments</label><br /> <input type="submit" name="submit" id="submit" value="Send" /> </p></form> <?php } ?> </body> </html> I was entering valid information into the index.html page. Which it's code linked to form.php. Appreciate the help, Pat.
  24. Okay, I have hosted the files now tot he Internet. However when I click on submit, it take me to a new tab, where the form.php is and asks for info to be intered again. I wanted/need it to be on main page without the user having to click a button to go to a new page. This possible? Many thanks for all the help.
  25. For now, yes I am.

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.