Hi im creating component for search and list some game servers, i found some tutorials and examples how to create components. Problem is im not php master and new to joomla component creation, i created component and inserted php page with list of servers. Now i don't know how to link from list of servers to full details of one server. In example pages(non joomla site) i created 2 php pages one is list.php and other is query.php list.php page display all servers in table and in server name i php code i put <a href="query.php?ip='.$server['ip'].'"> Now in browser when someone click on server ip link he open query.php page and there is $_GET['ip'] option and display server details from selected server link. And this works perfect. Than i created joomla component from following tutorial http://docs.joomla.org/Developing_a_Mod ... t_-_Part_1 And combined list.php page to display servers, and this WORKS PERFECT i install plugin go to joomla menu, put link and on site when i click link i get list of servers in table. BUT PROBLEM is i dont know how to make in this joomla component i created so far, when i get list of servers and want to click on server ip, to see server details and link list.php and query.php page in joomla component.