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?

Populating records into complex table
(1 viewing) (1) Guest
Go to bottomPage: 12345
TOPIC: Populating records into complex table
#30993
Re:Populating records into complex table 11 Years, 8 Months ago Karma: 0
Note the <img> tag on the 19th line of code.
dwoosley
Reasonably nice guy.
User Offline Click here to see the profile of this user
Gender: Male AppNation Location: Greenwood, Arkansas, USA Birthday: 08/18
The administrator has disabled public write access.
 
#30996
Re:Populating records into complex table 11 Years, 8 Months ago Karma: 748
Do you want to convert field value to HTML image with help of "ARI SQL Table" plugin?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#30997
Re:Populating records into complex table 11 Years, 8 Months ago Karma: 0
I'm not sure how that works yet.

First and foremost, what are your thoughts on the script in that text file?

d.
dwoosley
Reasonably nice guy.
User Offline Click here to see the profile of this user
Gender: Male AppNation Location: Greenwood, Arkansas, USA Birthday: 08/18
The administrator has disabled public write access.
 
#30998
Re:Populating records into complex table 11 Years, 8 Months ago Karma: 748
If you mean "ARI SQL Table" plugin, it doesn't work like script in attached file.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#30999
Re:Populating records into complex table 11 Years, 8 Months ago Karma: 0
I know. My recent messages are attempting to learn if you can do it. It seems to me that your existing functionality is already very close.
dwoosley
Reasonably nice guy.
User Offline Click here to see the profile of this user
Gender: Male AppNation Location: Greenwood, Arkansas, USA Birthday: 08/18
The administrator has disabled public write access.
 
#31000
Re:Populating records into complex table 11 Years, 8 Months ago Karma: 748
Try the next code:

Code:


{arisqltable header="0"}
    {arisqltablequery}
        SELECT * FROM myTable
    {/arisqltablequery}
    {arisqltablecolumns}
      {arisqltablecolumn virtual="true" pos="0"}
       {coltemplate}
<table>
    <tr>
        <td>{$AAA}</td>
        <td>{$BBB}</td>
        <td><img src="path/{$CCC}.jpg"/></td>
    </tr>
    <tr>
        <td colspan="3">
             {$DDD}
        </td>
    </tr>
</table>
        {/coltemplate}
      {/arisqltablecolumn}
    {/arisqltablecolumns}
{/arisqltable}



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