Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

The problem with the link to the article
(1 viewing) (1) Guest
Go to bottomPage: 1234
TOPIC: The problem with the link to the article
#10889
The problem with the link to the article 13 Years, 5 Months ago Karma: 0
Hi need help
necessary to make this article on the material in the format of writing
"<a href="index.php?option=com_content&view={$columns:title}"> {$ value} </ a>"

How to?
Thanks in advance
Last Edit: 2011/02/10 21:07 By install.
The administrator has disabled public write access.
 
#10892
Re:The problem with the link to the article 13 Years, 5 Months ago Karma: 748
Hello,

Could you provide more information, do you use SQL query that get data from "jos_content" table and you want to create links to articles or you mean something another?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#10897
Re:The problem with the link to the article 13 Years, 5 Months ago Karma: 0
Hello,
I am using a query
SELECT title, transport, way, cost, duration, sectionid, catid, id, alias
FROM jos_content

output the table of materials articles from Joomla and other fields article
and i want that to when you click on the article title takes you to the article itself

article title is a reference to the article itself

Thanks in advance
Last Edit: 2011/02/10 22:35 By install.
The administrator has disabled public write access.
 
#10898
Re:The problem with the link to the article 13 Years, 5 Months ago Karma: 748
Thank you for the explanation. Use the next format string:

Code:


<a href="index.php?option=com_content&view=article&id={$columns:id}">{$value}</a>



Regards,
ARI Soft
The administrator has disabled public write access.
 
#10899
Re:The problem with the link to the article 13 Years, 5 Months ago Karma: 0
Thank you, wise man
I want to ask one more question
In my case, I take the basic data from jos_content and in the same table you want to paste the article belongs to the category but not id and self title, which is in the table jos_categories
Last Edit: 2011/02/10 23:34 By install.
The administrator has disabled public write access.
 
#10906
Re:The problem with the link to the article 13 Years, 5 Months ago Karma: 748
You can use the following SQL query:

Code:


SELECT 
  C.title, 
  C.transport, 
  C.way, 
  C.cost, 
  C.duration, 
  C.sectionid, 
  CT.title AS cat_title
  C.id, 
  C.alias
FROM 
  #__content C LEFT JOIN #__categories CT
   ON C.catid = CT.id



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1234