Jump to content

Variables


unknown87

Recommended Posts

I'm getting this error - can anyone help me?

 

Notice: Undefined variable: Hello in C:\wamp\www\sandbox\variable_variables.php on line 12

 

<html>
    <head>
        <title>Variable Variables</title>
    </head>
    <body>
        <?php
        $a = "Hello";
        $hello = "Hello everyone.";
        echo $a . "<br />";
        echo $hello . "<br />";
        
        echo $$a. "<br />";
        ?>
    </body>
</html>

 

Thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/163948-variables/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.