Estos profesores no saben que existe internet xD
OPCION 1:
Esto no es javascript es HTML
Código HTML:
Ver original<a href="GO.php"> <button type="button" borde=0/> GO
<a href="WTF.php"> <button type="button" borde=0/> WTF
<a href="STOP.php"> <button type="button" borde=0/> STOP
OPCION 2:
HTML + PHP
Código HTML:
Ver original<form action="redireccionar.php" method="POST"> <input name="GO" type="submit" value="GO" /> <br> <input name="WTF" type="submit" value="WTF" /> <br> <input name="STOP" type="submit" value="STOP" /> <br>
redireccionar.php
Código PHP:
<?php
if ( isset($_POST['GO']) )
$url = GO.php;
if ( isset($_POST['WTF']) )
$url = WTF.php;
if ( isset($_POST['STOP']) )
$url = STOP.php;
header("Location: $url");
exit;
Espero que alguna te sirva.