de la forma que lo estas haciendo esta bien, solo que cuando lo recoges por POST no tiene el mismo name, tu input es:
<input type="checkbox"
name="v_reg_usuAgree" id="v_reg_usuAgree" checked="checked" />
y tu solo lo recoges con
v_agree, tendrías que también recogerlo con el name que tiene completo :
v_reg_usuAgree, prueba esto:
Código php:
Ver original<?php
if ($_POST["enviar"])
{
$valor = $_POST["v_reg_usuAgree"];
if ($valor == true)
echo $valor;
else
echo "nada";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin título</title>
</head>
<body>
<form action="mihoja.php" method="post">
<input type="checkbox" name="v_reg_usuAgree" id="v_reg_usuAgree" checked="checked" />
<input type="submit" value="ch" name="enviar" />
</form>
</body>
</html>