Help with correct php syntax code

Am trying to get the $phone information to be inserted correctly into the call button image.

The original code displays the phone number in text format and works fine and is :
[php]

<?php _e('Phone: ',DOMAIN);?><?php echo $phone;?>

[/php]

The code that I have got so far that displays the image but does not pull the $phone data and which I need help with is:
[php]

<?php _e('',DOMAIN);?><?php echo $phone;?>

[/php]

Could some kind soul help me with this am still a newbie and poking around to learn.
Thanks a ton for your time to read this and helping out.
Dee

Try this…

[php]

<?php echo '';?><?php echo $phone;?>

[/php]

The _e function is is a wordpress thing I’m not to sure what that does… If your $phone variable is populated the above should work.

Sponsor our Newsletter | Privacy Policy | Terms of Service