Search results

  1. D

    Logo Design Request?

    Why don't you just search the Internet for a nice font that's free, and just make your logo in MS Paint using that font, the name (CIT 2012) and some nice colours, maybe some nice smooth lines too, all up to you. Denno
  2. D

    What language do i use????

    Well for starters there is obviously HTML and CSS in play. There is also some javascript that would probably be animating the transitions. There could also be PHP but it's impossible to tell without seeing the source code. But really, I would have to say good luck getting a website up and going...
  3. D

    Webpage start-getting no where

    download yourself some free web templates and see how they're coded/designed. Do this for wordpress templates, CSS templates and html templates. It seems what you're asking here is for someone to do the work for you, and then provide you with the code, or step you through each line. You won't...
  4. D

    PHP Form Validation ???

    I don't believe the else if's are the right way to go. From looking at that code, the OP wants to check every field for validity, however using else if's as you have suggested will mean that as soon as one error is found, no others will be checked for. j4mes_bond25: Leave the code as if's as...
  5. D

    PHP Count rows in table - obvious choices aren't working

    thanks for your reply, but as you will read in the post just before yours, I fixed this problem a month ago. Denno
  6. D

    CMS for video, maybe?

    Well to be able to store the videos in the database, you will only want to store a link to the video, so it's URL. But I don't see why you wouldn't just upload your videos to youtube, and then store the link to the youtube video in the database (exactly the same as you storing them, except you...
  7. D

    Retrieving data from database and displaying in textbox when the button click

    To display information from a database in a form field once the button is pressed, you will need to refresh the page and run a new query to get the information (this is the easy way) The other way is to use AJAX. I haven't had much experience myself with that, but I know that it can work by...
  8. D

    need some help to display images from mysql with php

    From your wording, I'm assuming that you're storing the actual image in the database? I would suggest that you store the images in a folder in your images directory on your server, and just store the link to the image in the database. Then you can pull the link, echo it between <img> tags, and...
  9. D

    PHP Count rows in table - obvious choices aren't working

    Just incase anyone was wondering, I found the answer using another forum. I was mixing mysql and mysqli, which is a no no. I've changed to just be using all mysql commands, and now it works fine. Denno
  10. D

    Spacing out the links in my nav bar

    May I ask, what is the purpose of <pre> tag? It is directly before the <ul id="nav">. I noticed it, didn't know what it did, removed it, and the page displays fine.. so <pre> is your problem. Denno
  11. D

    video at homepage

    Oh nice, sounds good Lou. Might have to have a bit of a better look into using it :).
  12. D

    Spacing out the links in my nav bar

    When you send a reply, you need to click on 'Go Advanced' (instead of using the quick reply at the bottom of the page. Or just click on Post Reply somewhere in the thread. You'll then be in the advanced text editor, you type your message as usual, then scroll down into the Additional Options...
  13. D

    Spacing out the links in my nav bar

    Could I please see a screenshot of how it appears in your Design view, with all the other elements there.
  14. D

    Spacing out the links in my nav bar

    I'm not sure what the problem is? I've attached an image of how it looks where put the code into Dreamweaver. Can you explain what the problem is? (I also changed the font colour to black, as it's terribly hard to read the white on that background) Denno
  15. D

    video at homepage

    I wasn't suggesting making the whole site flash, just the video area itself. Making it FLV instead is interesting, I haven't heard of that before (been out of the game for a little while). What is the main advantage of this? Is it a smaller file size?
  16. D

    Spacing out the links in my nav bar

    can I grab your new php snippet for the menu too?
  17. D

    PHP Count rows in table - obvious choices aren't working

    [SOLVED] PHP Count rows in table - obvious choices aren't working I want to count how many rows are in my table so that I can hide a registration form on my website when a certain number is reached. I originally tried SELECT * FROM teams To select every row, from the database, and then I...
  18. D

    Multiple box CSS layout

    Glad to have helped :).
  19. D

    Multiple box CSS layout

    Sorry, didn't realize you had the CSS in with the source code. Anyways, I had a play around, and I've got them all showing now. Not sure why you have the position being set? Isn't really needed for this application. Here is the CSS that makes it display nicely: <style type="text/css">...
  20. D

    Multiple box CSS layout

    Any chance of putting your CSS sheet up so we can look at that?
Top