Recent content by whatever_noone

  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

    Noob with a PHP Syntax error, probably very easy for anybody but me?

    You can't just type <?php Hey this is some text. ?> You have to use echo. For example <?php echo('Hey this is some text.'); ?> It's telling you that it doesn't expect the < character because you need to echo it.
  4. 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?
  5. 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...
  6. 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.
  7. W

    My fiancee is in Baton rouge and im in north carolina we love each other very much

    You sound like you're in a difficult financial situation, so you'll certainly want to get a less expensive vehicle. Maybe a Hyundai Accent or Nissan Versa would be a good choice, he could make the payments every month with no down payment. They would be very low, probably less than $200 a month...
  8. 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...
  9. 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...
  10. 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...
  11. 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.
  12. 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.
  13. W

    Share photoshop with other users?

    Windows has a funny way of doing that, that I never understood. You can't enable Photoshop for other users, unless you actually installed it into C:\Documents and Settings\yourusername or C:\Users\yourusername, in which case you can just copy the files.
Back
Top