How to write php code(variable) in tooltip Here is my code:-

<head>
<link type="text/css" rel="stylesheet" href="css/screen.css" media="screen"  />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>  
<script type="text/javascript" src="js/chilltip-packed.js"></script>
<script type="text/javascript">
$(function() {

$('.ChillTip').ChillTip();
$('.ChillTip1').ChillTip({ 
CTBK:'#fff', 
CTBC:'#000',    
CTW:'150'
});
});

</script>
</head>
<body>
<?php
$abc= 'Urvisha';
?>

<a href="chilltip" class="ChillTip1" title="&#60;span class=&#34;one&#34;&#62;Blue&#60;&#47;span&#62;, &#60;span class=&#34;two&#34;&#62;Pink&#60;&#47;span&#62;, &#60;span class=&#34;three&#34;&#62;Green&#60;&#47;span&#62;, &#60;span class=&#34;four&#34;&#62;Purple&#60;&#47;span&#62;, &#60;span class=&#34;five&#34;&#62;Red&#60;&#47;span&#62;, &#60;span class=&#34;six&#34;&#62;Yellow&#60;&#47;span&#62;">For more info.</a>
<button class="ChillTip" title="This is a button example">BUTTON</button>

</body> 

I want the $abc in my tooltip if i am writing $abc inside title="" then $abc is displaying not its value plz help me.....

有帮助吗?

解决方案

You just need to echo the variable into the HTML:

<button class="ChillTip" title="<?php echo $abc?>">BUTTON</button>
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top