Mon Oct 27, 2008 6:08 pm
<html>
<head>
<title>Isset()</title>
</head>
<body>
<?php
$my_var = 100;
if(isset($my_var)) {
print("\$my_var is set... the value is " . $my_var);
}
print("<br/>");
print(isset($some_var) . "<br />");
$some_var = "I am set";
print(isset($some_var) . "<br />");
?>
</body>
</html>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.