Log in

View Full Version : how do I display the value of a variable in headinclude template?


pompaunpo
03-20-2012, 02:09 PM
this is my plugin hook at global_start (but I also tried to global_setup_complete)

function AD_Open($type) {
$result_AD=$db->query_first("SELECT css from mytable WHERE id ='$type'");
$csscode = $result_AD['css'];
return $csscode;
}

$dom_css = AD_Open(2);



in headinclude template I put $dom_css but is empty
why?

kh99
03-20-2012, 02:18 PM
Are you sure the query is working? Maybe try setting $dom_css to a constant and see what happens (maybe you already tried that, based on your question in the other thread).

pompaunpo
03-20-2012, 02:26 PM
Are you sure the query is working? Maybe try setting $dom_css to a constant and see what happens (maybe you already tried that, based on your question in the other thread).

Sure that the query works, is just one example, and the plugin is active, the query is not the problem!
i have vBulletin v3.8.7 Patch Level

--------------- Added 20 Mar 2012 at 16:38 ---------------

I have also tried to set $dom_css to a constant
$dom_css ='#test_css{display:none;}';but the result is the same, in headinclude template $dom_css is empty!