Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PeterAtKangasoft

    Expand text in Mambo static content

    I don't have a Mambo solution, but here is some HTML/JavaScript that will work: <table id="tbl_explanation" style="display='none'"> <tr><td>blah</td></tr> </table> <a href="#" onClick="javascript: document.getElementById('tbl_explanation').style.display='';">open</a> <a href="#"...
  2. PeterAtKangasoft

    FAQ/Knowledgebase System

    I don't have any specific suggestions, but here is a link that could help you find something: http://www.hotscripts.com/PHP/Scripts_and_Programs/FAQ_and_Knowledgebase/index.html Peter Sankauskas Web Developer http://www.kangasoft.com/
  3. PeterAtKangasoft

    Decile Report in SQL

    I am fairly confident that what you are trying to do cannot be done in SQL alone. You need just a little bit of code to do some processing after the SQL statement has been executed. You could write a stored proceedure or use another scripting/programming language to do what you are after. What...
  4. PeterAtKangasoft

    calculation in a simple query?

    If you want to just add a column with all ones, then you can do the following: SELECT NAME, 1 AS GM FROM employees Peter Sankauskas Web Developer http://www.kangasoft.com/
  5. PeterAtKangasoft

    query of queries

    Ok, first of all, Coldfusion's query of a query does not perform very efficiently and should probably be avoided if possible. I believe you can simplify your code a great deal. Since both of your database queries are in the same datasource, you can do everything in one <cfquery> To start, try...

Part and Inventory Search

Back
Top