Results 1 to 2 of 2

Thread: Added Data

  1. #1
    Join Date
    May 2004
    Location
    New Zealand
    Posts
    600

    Default Added Data

    Would it be easy to have new feilds in the detail page from feilds that come from a differant table not just from the links table...

    Lets say there is feild <%item1%>
    and it needs to come from a new table called... idx_newtable and not from idx_link

  2. #2
    Join Date
    Apr 2003
    Location
    Atlanta GA
    Posts
    3,395

    Default

    you could do something like

    global=%conn;
    $query = "select item1 from idx_newtable where link_id = '$id";
    $result = $conn->Execute($query);
    $item1 = $result->Fields("item1");

    then add $item1 to the DisplayTemplate

    I added the "where link_id = '$id'" but you will need to establish the linkage
    esm
    "The older I get, the more I admire competence, just simple competence, in any field from adultery to zoology."

    .

Similar Threads

  1. Import In-Link data into IndexU?
    By Frisk151 in forum v3.2
    Replies: 7
    Last Post: 09-22-2004, 07:26 AM
  2. Conditional Include Field Data
    By bestfx in forum v5.x
    Replies: 4
    Last Post: 12-19-2003, 10:38 PM
  3. Imported data..now date is 31-Dec-1969
    By lordkinjo in forum v5.x
    Replies: 2
    Last Post: 08-18-2003, 07:38 PM
  4. get more accurate searchlog data
    By tjoerg in forum Website development, hosting and promotion
    Replies: 0
    Last Post: 05-31-2003, 11:09 AM
  5. Import data,
    By aladdin in forum v5.x
    Replies: 9
    Last Post: 05-27-2003, 03:53 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •