I am trying to use CONCAT in this view:
CONCAT ('<a href="" onclick="return top.GO.linkHandlers.GO_Projects_Model_Project([', pm_projects.id, '])">', pm_projects.id, '</a>') As `GO-id`,
On my local computer this works fine in phpmyadmin and gives this expected result:
<a href="" onclick="return top.GO.linkHandlers.GO_Projects_Model_Project([190])">190</a>
But on the live server i get this:
<a href="" onclick="return top.GO.linkHandlers.GO_Projects_Model_Project([190])">190</a>
Why would it work fine on my local installation, but not on my live server?
Thanks for all help.