Jump to content

danhodge

Member
  • Posts

    119
  • Joined

  • Last visited

Posts posted by danhodge

  1. A major part of learning website design is testing yourself, instead of/as well as others testing you...

     

    What i did, was i found a company that had a bad website, like this, and i tried to create my own version of the website, to see if i could do any better...

     

     

    Just make a website and either look at it on your localhost, or use a free web host to begin with, and you will clearly see how much you know and how much you don't :)

     

     

     

    About the validation thing, did you scroll down on that link?

     

    Read the errors, they just interpreted it differently, like where height"" is shown to be false, because it has no number inside it, yet it still works fine on the browser.

     

     

    Any real error can be seen by self-checking the website.

  2. I have probably brung this up before, but it is slightly driving me crazy...

     

    This is my current download PHP, which is working fine - i think someone here gave it me, or i C+P'd...

     

    But the point is, whenever i change the type to ZIP and the file to being a ZIP file, it wont work - it downloads, but it tells me i can't open the actual file itself...

     

     

    <?php 
    
    $filename = "download.txt"; 
    
    header("Content-Length: " . filesize($filename)); 
    header('Content-Type: text/octet-stream'); 
    header('Content-Disposition: attachment; filename=download.txt'); 
    
    readfile($filename); 
    ?>

     

    Anyone know why?

     

    Thanks,

    Danny

  3. Ahh okay then :lol:

     

    Well, i am 15, and i only started website designing about 1 or 2 months ago, and i know basic HTML and CSS, a small amount(very small) of Javascript, and im going to attempt to learn PHP soon.

     

    The only issue i have is that i never know what i want my website to look like, or i never reach my drawn design...

     

     

    So basically, age doesn't matter, and im not disciplined whatsoever, so that doesn't matter...

     

    If you enjoy learning something new, it wont take you long at all :)

     

     

    Good luck ^_^

  4. My current project is on this link here, which is just for me to test Javascripts and some CSS i don't know yet.

     

    I am hoping to make one button a lighter blue, and the others stay the color they are now.

     

    I tried this by using two Div tags, but i can't seem to keep them on the same line if i do use the two div tags...

     

     

    Is there a way around this, like a Javascript event that handles a link that has been clicked on, and can change the background?

     

     

    Thanks,

    Danny

  5. Ahh okay then :)

     

    Well, i think learning Javascript is still gonna be my priority - its much simpler than PHP, and more useful for what i currently need on my project :)

     

    Thanks so much for all this, i only started HTML coding about a month or 2 ago, PHP is a lot to get my head around sometimes...

  6. I am actually quite interested in this myself, as i am hoping to use them on my website when it is finished...

     

     

    I haven't personally used it myself, but his other videos have helped me out a lot, so im guessing this one is good too :)

     

    There are a few videos, but the link is the intro, which may possibly outline your question :)

     

     

    Hope that helped...

  7. I dont know if this is a much too simple answer, and i know people dont tend to use html for things they can use CSS for, but...

     

    <center> </center> centers any text or media to my understanding :)

     

     

    Just if that link can't help you, i guess thats an alternative ;D

×
×
  • Create New...