By bostuh on
Hi everybody.
I want to make a href link in my drupal site which links to some php function... But this example code doesn't work..
href="/drupal/?q=node/14?init=true">Click Me
if(isset($_GET['init'])) {
myFunction();
}
function myfunction() {
print 'You called the function';
}
Comments
Code within
where did you write the code within the module?
i wrote it in the default
i wrote it in the default view template..