Silent PC in five simple steps

Bigruin offers us five simple steps to a quieter PC, they all very easy to accept, not allways so easy to achieve:

  1. Colling fans
  2. Cases
  3. Fan Controllers
  4. Power Supplies
  5. Noise / Vibration Isolators

Since a lot of people use to keep on their PC’s for downloading or to work as a firewall / switch / router, it may be interesting.

Php without global vars

I was trying a simple form write in php. As usual, I try it in the old way, look for an example and then copy and paste… unsuccessfull …
After become a little bit crazy I remember those changes done by php team around register globals in 4.2.0

I look around for a while, specially reading php documentation and I found very good examples and explanations.For example at register globals documentation page I found inspirer contributions. Now I offer you mine own code:

if ($_POST['submit']) {
...
$name = $_POST['name'];
...
echo "You say $name";
}else{
...
echo "<form>Nombre:<input type="text" name="name">
<input type=...>
</form>";
}

I hope it would help somebody…