the problem is that I dont want to make it so ur using a form. I just want the value to be called out by using the name.
Uh what?
If you don't want to use a form, then what exactly is the purpose of this input hidden field in your original post? (Especially since a user can't change a hidden input's value on a web page)
<input type="hidden" name="blah" value=2>
<?
$value = $_GET['blah'];
echo "$value";
?>
Also, the $_GET super global is only created by either passing a variable in a URL with an anchor link like this:
<a href="link.php?blah=blah">Link</a>
Or by passing it through a form as rehfeld suggested.
Me thinks you need to better explain what it is you are trying to do.