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?

Show filtered data to Community Builder users
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: Show filtered data to Community Builder users
#12837
Re:Show filtered data to Community Builder users 13 Years, 1 Month ago Karma: 0
Thanks for your response. However, could you give the exact code to place in my query so the data that my query is pulling will only provide it by the current user? I have tried but to no avail.

thanks
The administrator has disabled public write access.
 
#12838
Re:Show filtered data to Community Builder users 13 Years, 1 Month ago Karma: 748
Provide structure jos_facileforms_records and jos_facileforms_subrecords tables please.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#12839
Re:Show filtered data to Community Builder users 13 Years, 1 Month ago Karma: 0
Here ya go.

Code
------------------------------------------------------------------------------------
SELECT jos_facileforms_subrecords.name, jos_facileforms_subrecords.value, jos_facileforms_records.id
FROM jos_facileforms_subrecords
LEFT JOIN jos_facileforms_records ON jos_facileforms_subrecords.record = jos_facileforms_records.id
WHERE jos_facileforms_subrecords.title IN ('Project Title')
ORDER BY jos_facileforms_subrecords.id

-------------------------------------------------------------------------------------

thank you in advance for your help!
The administrator has disabled public write access.
 
#12840
Re:Show filtered data to Community Builder users 13 Years, 1 Month ago Karma: 748
Provide structure of the tables, not your SQL query. We need to know what columns contains the tables.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#12841
Re:Show filtered data to Community Builder users 13 Years, 1 Month ago Karma: 0
Hi,

I re-read your email requesting the structure. I have attached that information.
File Attachment:
File Name: Structure.zip
File Size: 760834
The administrator has disabled public write access.
 
#12842
Re:Show filtered data to Community Builder users 13 Years, 1 Month ago Karma: 748
Thank you. Use the next SQL query:

Code:


SELECT 
  SR.name, 
  SR.value, 
  R.id
FROM 
  #__facileforms_subrecords SR LEFT JOIN jos_facileforms_records R 
    ON SR.record = R.id
WHERE 
  R.user_id = {$UserId}
  AND
  SR.title IN ('Project Title')
ORDER BY 
  SR.id



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