Search results

  1. W

    Will this make my car explode?

    My car's gas tank is leaking, and the leak is within a few inches of the exhaust. It's not a big leak, like 1 drop every 7 or 8 seconds. Is it safe to drive my car to the repair shop or do I have to have it towed?
  2. W

    Why is my PHP mail script not working?

    This is basically it: <?php $to = " MY EMAIL HERE "; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; if (mail($to, $subject, $body)) { echo("<p>Message successfully sent!</p>"); } else { echo("<p>Message delivery failed...</p>"); } ?> It says the email was sent, but there's no message...
  3. W

    How to make PHP session never expire?

    Due to the nature of my website, a user's PHP session should expire only when the window is closed. Not after a certain amount of time. How do I do this?
  4. W

    How do I get rid of backslashes in PHP?

    On my website I take user submitted data (from a textarea) and put it in a MYSQL database. I expect apostrophes to be present so i use mysql_real_escape_string. That works fine. Now on another section of the site, this data is pulled out of the mysql database and displayed on the page. The...
  5. W

    Which is the best pony car in your opinion?

    Which of the three current pony cars is the best? Consider the base model with no options for each car, but do not consider the price of each one.
  6. W

    How do I do this in HTML/CSS?

    What I want, is to set the width of a <span>. I found that I can do that with display:block; but that causes a whole line break. I want to set the width without a line break. Basically I'm trying to build a navigation bar for my website. I want each link to have a certain width in pixels. If I...
  7. W

    What is wrong with my HTML?

    What I have is this: < form name="myform" action="submit.php" method="post" > < a name="link" value="1" onclick="javascript-submit-form" >Link 1< /a > < a name="link" value="2" onclick="javascript-submit-form" >Link 2 < /a > < /form > "javascript-submit-form" is actually the javascript to...
  8. W

    What is the best way to escape a police car?

    I'm not a criminal, first of all. You see, every year the cops in my town have a demonstration to prove that the cars are un-escapable from. That is, once you're in, you don't get out. Well, they're a little too cocky, and I want to prove them wrong. Any ideas? What I want to do, is physically...
  9. W

    Which Chevy Cobalt looks cooler, the coupe or the sedan?

    Well I'm not getting a brand-new vehicle, I'm only in high school. It would be at least a few years old. And driver's licences are so bloody restrictive here that I can only have one passenger until I'm 19. I don't need a 4 door unless it looks cooler.
  10. W

    How can I send email using PHP?

    I am trying to create a form on my website that will email me something via PHP. I receive no error messages on any of my tests, yet I receive no mail, either.
Back
Top