Jump to content

Maq

Administrators
  • Posts

    9,363
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Maq

  1. <br /> document.myform.myinput.focus();<br />
  2. There are multiple ways of handling dates but logically one would use the date function to handle them. It's the safest/easiest way to handle them.
  3. Something you do. Bottom right tab, I think ???
  4. Can you echo out the query to ensure they contain correct values: $query = "INSERT INTO test (departureDate, expireDate, airport, destination, resort, hotel, duration, board, price, specialoffer, description, customerRef, mystiqueRef, stars) VALUES ('$departureDate', '$expireDate', '$airport', '$destination', '$resort', '$hotel', '$duration', '$board', '$price', '$specialoffer', '$description', '$customerRef', '$mystiqueRef', '$stars')"; echo $query;
  5. You should create a new thread for this particular problem. I was going to have a stab at it myself first before posting. I've gotta learn to do it, or at least have a go, or I'll learn nothing, and it'll be like others writing the code for me, and that's not good. But if it comes to it, there will be another thread. Yes, I definitely agree with you. That's a good mindset to have when you are learning to program. What I really meant was, if you have a problem/issue/concern whatever, start a new thread for it.
  6. You should create a new thread for this particular problem.
  7. Glad everything is working now. I think the design phrase you were looking for is MVC.
  8. What is there to research for 2 years? SEO isn't some mystery... It's if you're willing to spend the time, money and effort to get it there. Who cares where it's based out of. You don't have to be in London to do web design there... Isn't that the point of the internet? This isn't a 1 question/answer solution. You've spent over 2 years in web SEO so you know that it takes time, money, promotion, etc... to be even the least bit competitive in the search engine rankings. Especially if you want these highly competitive keywords like "web design".
  9. There's nothing there...
  10. You're using parentheses for your if and else statements on lines: 21 39 41 52
  11. So what exactly is your question?
  12. Oops your right thanks! I never have and it seems to work. Otherwise I have to write over and over It may not be the cause of the error but, like Lamez said, it's good programming practice. I don't think it will validate either.
  13. Shouldn't you close your option tags?
  14. 'id' should be auto-increment...
  15. Looks a tiny bit better, still looks like a site you would get virus from.
  16. Weird... 'id' is auto-increment, correct? Try this, out of curiosity: $query = 'SELECT id FROM bleudeciel16_data ORDER BY id DESC LIMIT 1'; $result = mysqli_query($cxn, $query) or die(mysqli_error($cxn)); $row = mysqli_fetch_assoc($result); echo $row['id'];
  17. Either way should work.
  18. Try this: echo $row['MAX(id)'];
  19. This is one of the most basic extractions from a MySQL database. Please read up on the basics. while($row = mysql_fetch_array($result)) { echo "Tel: " . $row['tel'] . " code: " . $row['code'] . " "; }
  20. You should probably go to their site and download the latest driver. I did a search on, "Realtek Semiconductor Co., Ltd. RTL-8185 IEEE ubuntu", and found that a lot of other people are having similar/worse problems, as in they can't even get a connection. The issue seems to lie either with Ubuntu, the driver being out of date, or just having the wrong driver. Has this card worked properly on previous versions of Ubuntu?
  21. He was... I swear!
  22. I'm beginning to think this is some kind of sick joke myself. Like a member of phpfreaks put this site together in 10 minutes and posted it in the critique section for shits 'n giggles. Please tell me this is true!
×
×
  • 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.