<?php
defined('_JEXEC') or die( 'Restricted access' );
jimport('joomla.plugin.plugin');
echo = "Jomsocial is the best" ;
?>
// additional API to be added
What is missing for me to trigger that php file called ( community.php ) with a JavaScript onClick ?
Just want help in figuring out why .get(community.php); wont get executed when fired...
in other words, is it possible to load...<?php
defined('_JEXEC') or die( 'Restricted access' );
jimport('joomla.plugin.plugin');
echo = "Jomsocial is the best" ;
?>
// additional API to be added
What is missing for me to trigger that php file called ( community.php ) with a JavaScript onClick ?
Just want help in figuring out why .get(community.php); wont get executed when fired ...
in other words, is it possible to load example.com/community.php just like that in JavaScript?