Search results

  1. Chroder

    Thunderbird sigs

    Thunderbird is Mozilla's mail client. A great alternative to the hideous Outlook or Outlook Express ;) I use TB, though I don't use signatures so I can't tell you off the top of my head. Download and have a look around ;) Though I think you should tell your client he will be better off...
  2. Chroder

    iframe customisation

    scrollbar CSS only works in IE AFAIK (unless other browsers have started to support this ludicrous non-standard, but Mozilla doesn't). What you want to use is Javascript. Check out the scrollers section on DynamicDrive. They have a few examples.
  3. Chroder

    Transparent textbox over an image.

    use CSS to give the textarea a background image. .mytxtarea { background: url(path/to/bg.gif); } ... <textarea class="mytxtarea"></textarea>
  4. Chroder

    Controlable flash file.??

    I found this on Macromedia's site. You might want to take a look through the listings on FlashKit, too.
  5. Chroder

    need a code please

    This is a feature of Internet Explorer, you can't use any code to disable it, the user has to do it themselves. Tools -> Internet Options -> Advanced (tab) -> Enable Image Toolbar (under Multimedia)
  6. Chroder

    weird thing I'm trying to do

    <form action="http://www.google.com/search" method="get" name="f"> <input type="hidden" name="hl" value="en" /> <input type="text" name="q" value="" /> <input type="submit" name="BtnG" value="Search" /> </form> That should do it.
  7. Chroder

    Referrals

    http://www.webdesignforum.com/faq.php?faq=vb_board_usage#faq_vb_referrals_explain
  8. Chroder

    Password protection

    You would need some kind of server-side technology. What kind of member only section is it? Is it only for a select group of people? If, for example, you only needed to give 10 people access then you could use htaccess to just manually create 10 users. But otherwise, you'd probably be best...
  9. Chroder

    searching

    Just create a form with the method as GET. <form action="search.php" method="get"> <input type="text" name="sk" /> <input type="submit" value="Go" /> </form> The method GET will post the form values to URL query strings. So the text box with the name sk and the value test will result in...
  10. Chroder

    Help With Table

    The pages load exactly the same in FF and IE for me.
  11. Chroder

    Thanks Chroder

    1. There are several, but the most important: (note that 'bb' is an editable prefix) bbuserid: The userid of the user for use with auto-login bbpassword: The hash of the users password bbsessionhash: The current session ID of the user 2. None, vB supports on MySQL right now. Though people...
  12. Chroder

    Thanks Chroder

    Aww, that sucks. I wanted to be italic.
  13. Chroder

    Thanks Chroder

    So are you ginna make the VIP's blue or italic or something?
  14. Chroder

    Thanks Chroder

    Er, your welcome :D ;)
  15. Chroder

    windows vs linux

    Pfft, why run Apache on Windows :P
  16. Chroder

    windows vs linux

    Pretty much every site that doesn't need ASP[.NET] will be using a Linux server.
  17. Chroder

    Submiting form to email addy via PHP

    If you post it into the [php ] bbcodes, you can easily tell the missing quote ;) Try getting an editor with syntax highlighting, too. Like PHP Designer (free) or EditPlus (free eval).
  18. Chroder

    Submiting form to email addy via PHP

    Ah yes, $comments = $_POST['contact_comments]; You are missing a quote. $comments = $_POST['contact_comments'];
  19. Chroder

    Submiting form to email addy via PHP

    Use bbcode to post code. Anyway, else (echo "We are currently experiencing problems with our contact form and apologize for any inconvenience. Please try again at your convenience."); Is incorrect, replace with: else { echo "We are currently experiencing problems with our...
  20. Chroder

    Submiting form to email addy via PHP

    http://www.snipe.net/content/view/19/42/ There's a good one that shows how to send a multipart (HTML and plaintext versions) email.
Top