Jump to content
xisto Community
Sign in to follow this  
iGuest

I want to print the variable name not the value of variable. Php Variable Concatenation

Recommended Posts

I want to print the variable name not the value of variable.Php Variable Concatenation

<?php

$a=1;

$b=2;

$c=$a+$b;

echo("when adding $a and $b, the result should be ". $c);

//it should print when adding $a and $b, the result should be 3

?>

-question by bino

 

REPLY

You have to escape the $ sign using  .Your line will become:-echo("when adding $a and $b, the result should be ". $c);

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.