Jump to content

mikhl

Members
  • Posts

    80
  • Joined

  • Last visited

About mikhl

  • Birthday 08/25/1990

Profile Information

  • Gender
    Male
  • Location
    England
  • Age
    23

mikhl's Achievements

Member

Member (2/5)

0

Reputation

  1. Thanks Psycho, That's what I was thinking. Just because someone made a chair doesn't mean that nobody else can make a chair, though I know some companies that would disagree *cough* and would patent anything *cough* I am doing some research into the website now, Both to protect myself and as a way to better my website. Where has the current website gone wrong and where can I improve, how can I make my website different? - A few questions I'm keeping in mind.
  2. Hi guys, I recently had a great idea (well I think it's a great idea) for a website which I have created basic designs for and started developing on my own. I really thought this idea was going to be new. However, after more research, I have found that there is a strikingly similar website already out there. Same basic idea and concept, though I am not developing a clone of the website. I was just wondering if there were any opinions on developing things that have already been done; though the website I am thinking of hasn't been done to death. I was also worried about being accused of copying concept. I am bringing this up purely as I came across the website today and I was hoping for others opinions. I think I could do a great job with the website and I am enjoying the time I have put into it so far. I know this post may seem a bit pointless and jumbled, I'm just looking for some thoughts. Thanks, Michael
  3. Hello, I was wondering if it was possible to make a convincing command line based website. So there would be no graphics and actually no content until the user typed in the neccesary commands. For example, they may type contact and receive contact details. This is only a basic example. If this is possible, how could it be done. Thanks
  4. When using inline CSS make sure you are ending each statement with a semicolon. <a href="#" style="text-decoration:none;color:#000000;">Link</a> However. If you are going to be using the same style on a number of different anchor links and or on a number of pages, it is best to use external style sheets.
  5. Try using styles in the head of your HTML document or put them in a desperate file and link that to your document. In head of file: <style type="text/css"> a { text-decoration:none; color:#cc0000; } </style> Make sure in your CSS your are spelling colour as color. The American way.
  6. Hmm. I agree, if your going to use quotes for multiple classes then you may as well keep to the convention and use them constantly. Seems like a better practice. Kind of like closing the <p> tag in my opinion is a must!!
  7. Hello. This is just a general curiosity question. I am just wondering about peoples preferences with the use of double quotes in HTML5. In XHTML and HTML5 the following is valid: <div id="wrapper"> <div class="someClass"> <p class="important">Some Content Here!</p> </div> </div> However I hear that in HTML5 you can also choose to leave the double quotes out: <div id=wrapper> <div class=someClass> <p class=important>Some Content Here!</p> </div> </div> I think it makes sense that they wouldn't be required. However, for the moment I am still using them to ensure there are no compatibility issues with any older browsers. What do you think about this, do you think its a good idea? What approach do you think we should be using now if we are coding HTML5 pages?
  8. I think that session_start() has to be at the very top of every page that uses it. Make sure it's all lower case too
  9. Try changing your for loop to this while loop while($game = mysql_fetch_assoc($games)) { ...all your code minus the mysql_fatch_array part }
  10. Glad I could help. Make sure you test he app/website properly to ensure all of the functionality works correctly. Especially concerning this part of the code.
  11. You could use hidden input types. Although, as previously stated, the values are easily editable by someone who knows what they are doing.
  12. is incorrect. As per http://www.w3schools.com/tags/att_input_disabled.asp My bad
  13. also properly indenting your code ensures that you can see mistakes ans makes it 100% better for others to read and understand your code. Making it easy for others makes it easy for you.
  14. If you want to send a value with a disabled text field you have to set something to the value attribute. <input type="text" name="name" id="id" value="some value" />
  15. w3schools can be a little outdated sometimes as they have no affiliation with any language, such as PHP. However, it is s good way to learn the basics. Just make sure you check everything, or atleast anything you are having a problem with on php.net. If PHP will be your first programming language, then I definitely suggest a good up-to-date book, using the latest version of PHP. This will teach you all the concepts you need to understand for coding.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.