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. cfhomer

    DirectoryExists command refuses to work...

    Or even try to put the quotes inside the brakets like so:<br> <br> &lt;cfif DirectoryExists('#source.s_path#') is "yes"&gt;<br> <br> <br>
  2. cfhomer

    Locking of a single record (row) while being displayed.

    Another way is to put a column into the table which either<br> <br> 1. identifies the user that has it locked<br> 2. simply has LOCKED/NOT LOCKED states (can be achieved with boolean or char(1))<br> <br> Then when you edit, you simply set the state of that column to locked, and on update, remove...
  3. cfhomer

    Passing a CF variable to a Javascript

    Need to put the quotes around the #sOutput# like so:<br> <br> newWindow.document.writeln('#sOutput#')<br>
  4. cfhomer

    ARRAYS: Displaying the content of one cell

    First of all, but this is probably not a problem anymore, your code has:<br> <br> #arBoxType[nBox]#&lt;BR&gt;<br> <br> instead of:<br> <br> #arBoxType[nCount]#&lt;BR&gt;<br> <br> ---
  5. cfhomer

    SQL extreme newbie question

    I don't know if this reply is coming too late Perry, but I would suggest you have the one big table. That way it is very easy to show combined headlines from all the sports by simply ignoring the sport field, and you can also have specific sport pages that only show their own headlines.
  6. cfhomer

    Directory listing question

    Have you tried doing an IF inside the while loop which checks if the $file is not "." and ".."? I don't think you can restrict the listing in the opendir command.<br> <br> try something like:<br> <br> if (strcmp(".", $file) AND strcmp("..",$file))<br> {<br> print ...<br> }
  7. cfhomer

    passing parameters to a file????

    There shouldn't be a problem in passing query variables. It looks fine, but what you do need to do is establish if #site_query.title# would have spaces in it or not. If yes, then you need to encode it.<br> <br> try: #URLEncodedFormat(site_query.title)#<br> <br> Also remember you will need a...

Part and Inventory Search

Back
Top