Recent content by macgrooty

  1. M

    photoshop or fireworks for Webdesign?

    Fireworks is way easier than Photoshop. Photoshop's quality is superior to FW.
  2. M

    photoshop or fireworks for Webdesign?

    Fireworks is way easier than Photoshop. Photoshop's quality is superior to FW.
  3. M

    photoshop or fireworks for Webdesign?

    Fireworks is way easier than Photoshop. Photoshop's quality is superior to FW.
  4. M

    photoshop or fireworks for Webdesign?

    Fireworks is way easier than Photoshop. Photoshop's quality is superior to FW.
  5. M

    PHP htmlentities question...?

    Is it safe to echo htmlentities on a password field? Isn't that a security issue? I've heard that you should never echo anything from the password field. I mean all you have to do is look at the source code and see the password value that was just posted - I don't get it. Any insight?
  6. M

    am learning PHP, i dont know why this code is not doing the right thing. please help?

    Stay away from $_REQUEST and use $_POST. There is no "request" method for forms use "post" (in this case) or "get". Name your "submit" button too. copy and paste this code to try it out: <html> <head> <title>POST example</title> </head> <body> <?php if(isset($_POST['submit'])) { //...
  7. M

    What is the best editor for PHP/Javascript/AJAX?

    yep...NetBeans. Open source = free
  8. M

    I Help me with my HTML?! / javascript / css... etc?

    Yeah...I think I understand. You could use an absolutely positioned div over each section that you want to be "hot". Then turn the div into a link so it's clickable.
Back
Top