Search results

  1. P

    Proffesional Backgorund Colour

    Well it really has to do with what kind of website you are designing for. What is the theme of the site, and what color do people associate with such theme. For example, if you think of the beach, most people think about tan colors, if you think about doctors you probably will think about blue...
  2. P

    PHP scripts?

    Well if you find one of them only that is great (specially if it is free) in the down side they may not do everything you want and/or the way you want it.
  3. P

    Adding upload to a form?

    there is an input type called "file" in php you will access it with the $_FILE variable. so in your form you will add something like <input type="file" name="media" /> and in the php side you can access it with <? echo "<pre>"; print_r($_FILES['media']) echo "</pre>"; ?> You...
  4. P

    Auto-Date

    use document.lastModified parse it, and write the date the way you want it, it is not too complicated
  5. P

    What i need to know

    Well, it really depends on what you want. If you want to create "simple" websites, you can go with Dreamweaver, but at some point you will run into "it is not what I want" situations I would recommend you to read tutorials in HTML, CSS, and PHP. You will find plenty of them with a google query
  6. P

    How to do in PHP?

    What? Your question is not clear. to send mail use the mail() function. to upload images use a multiform form and the $_FILES variable
  7. P

    How to hide JavaScript source code?

    You cannot hide it. The browser needs to code in order to execute it so it has to go reach the users computer. The .js options may only require and extra step to get to the code but it is still possible. there is no way to hide it.
Top