Skip to main content
Known Participant
September 23, 2010
質問

SELECT queries in CFML needed to get closed at end of page

  • September 23, 2010
  • 返信数 1.
  • 424 ビュー

<cfquery datasource="yyyy" name="getData" >
SELECT Products.*, Categories.* FROM Products INNER JOIN Categories ON Categories.Category_ID = Products.Category_ID WHERE Category LIKE '%#searchKeyword#%' OR Product_ID LIKE '%#searchKeyword#%' OR Product_Name LIKE '%#searchKeyword#%' OR Product_Description LIKE '%#searchKeyword#%'
</cfquery>

SELECT queries in CFML needed to get closed at end of page?

In dreamweaver a simple template.dwt may accept cfml code, is needed renamed(ext)?

    このトピックへの返信は締め切られました。

    返信数 1

    Inspiring
    September 23, 2010

    Under what circumstances does the error occur?

    123polis123作成者
    Known Participant
    September 24, 2010

    when #searchKeyword# get from url and contains spaces? if I url encode (how?), search still will work?