I am a beginner php and joomla user. I have installed jumi component in joomla 2.5. I want to collaborate between pages but I don't know how to link between them. Can anyone please help me by explaining briefly.
Such as I have created a new file in jumi named "linked to another article" and the codes are explained below:
I have defined them:
defined("_JEXEC") OR die ("Restricted access");
I have created a link:
$linktext = "<Click> & you'll see";
After that I put the href:
<a href="FILE PATH"><?php echo htmlspecialchars($linktext);?>
After that I have created another file in jumi named "ABC" where I put <?php echo"Hello World"?>
, how can I include the path of ABC file in the "FILE PATH" of my first file so that if I click on the first files link then it will redirect me to my ABC file and show "Hello World"?
I will be grateful for your kind reply. Thanks.