Get data from DB

leonor

Active Member
License Active
Hello,
i try to get some data from my DB what is working so far.

I createt a new "Plugin" when i upload this and add the Template-tag to my details site, its working. But other plugins stop working. And when i delete this plugin, details site working fine again.

The Table where i get this information from is VL_stats cl_bot_global & cl_bot_unique

Whitout the new plugin:
View Screen Capture

With the new plugin:
View Screen Capture
 

Attachments

Basti

Administrator
Staff member
Code:
$TMPL['last_Global'] = $TMPL['cl_bot_global']);
$TMPL['last_Unique'] = $TMPL['cl_bot_unique']);
Each at the end has ")" which normally cause a php error. Suprised it display the stuff at all. Anyway remove that and it should work
 
Top