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 TouchToneTommy 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: *

  • Users: ingernet
  • Content: Threads
  • Order by date
  1. ingernet

    validating a form using method=get?

    Hi all, I'm required to validate a form which (for really stupid and unchangeable reasons) has to use method=get. The code I have right now submits the form even if the values are invalid, which is not what I want to have happen. code on jstest.html: <table align=center><tr><td align=left...
  2. ingernet

    struct vs. database: efficiency?

    Hi all, I have an application that I'll need to roll out to anywhere from 3000 to 20,000 users in a variety of languages. It's a 10-step survey application that will ask the same questions and have the same input buttons in 6 different languages. Pages are labelled step6, step7, etc. So my...
  3. ingernet

    getting the number of checkboxes

    Hi there, I need to get the number of checkboxes in a given form. Would I use something like this line below? document.myFormName.element.checkbox.length ...Or is there another way to do this without looping throughout all the elements and counting them one at a time, manually? Thanks! Inger
  4. ingernet

    can anyone make sense of this query?

    Hi all, For those of you who remember me from last week's post, I'm STILL trying to figure out what the heck my predecessor was thinking when he wrote this SQL query, among a variety of others: CREATE VIEW dbo.vTime_ElapsedByTask AS SELECT [BEGIN].[id], [BEGIN].user_id, [BEGIN].[Date]...
  5. ingernet

    missing submit button on form refresh

    Hey all, Hit a bit of a snag here. I have a very Swiss cheese-like understanding of JavaScript and need some help with a form I've inherited for debugging purposes. We've got three checkboxes: box1, box2, and box3. We also have a fourth checkbox: box99 ("none of the above"). When box99 is...
  6. ingernet

    PHP's unzip() not unzipping.

    Hi folks, After working on this for 3 hours, I've decided to bite the bullet and ask for help. I've got a file that I'm uploading through a form - the file is called myfile.zip. For what it's worth, it was created on Mac OSX using the "Make an Archive" option. I know that it's a valid ZIP...
  7. ingernet

    how to get &quot;4 each&quot; from a, b, c and d using limit

    hi folks, got a bit of sticky wicket here. i have the following tables: FILES_TABLE ft_id ft_filename ft_Uid ft_descrip USERS_TABLE U_id U_firstname U_lastname ultimately, i'm looking to query 4 random files from the FILES_TABLE for each user found in the USERS_TABLE. the end result...
  8. ingernet

    Passing Session variables via hyperlinks in Fusebox

    Hello, I'm having a helluva time getting session variables to pass through hyperlinks in a Fusebox application I'm writing. The circuit in question ("staffstuff") is a password-protected circuit. Any fuseaction in it needs to be protected, and I'm doing this by using the following code at the...
  9. ingernet

    returning rows where field's value starts with A, B or C

    Hello all, Happy Christmas Eve. I'm trying to pull all the last names that start with A-C, D-F, G-H, etc. I've tried to use select * from mytable where LastName like '[ABC]%' ...but while it makes perfect sense to me, MySQL is having none of it. I'm sure the syntax is off, but the...
  10. ingernet

    Left Join and Null values

    Hello, I'm finally losing what's left of my mind, all thanks to what should be simple query (which is probably breaking all the rules of MySQL). Here's the scoop: got a simple left join query: select users.uId, user_activity.ua_uId from users left join user_activity on users.uId =...
  11. ingernet

    deleting &quot;orphan&quot; rows from table

    Hey folks, Any idea how I can do this? I've got two tables: subscriptions and subbedUsers. here's subscriptions: pk_sId s_SubUId (this uses subbedUsers.pk_suId) s_NId (this uses newsletters.pk_nId, not necessary to describe this here) ...and subbedUsers: pk_suId suEmail suName I'd like to...
  12. ingernet

    Image in bottom layer not showing up

    Hi folks, I'm very new to CSS and am wondering if you could help me out. I've got 2 images: toplayer.png (a transparent PNG, with the middle cut out of it) and bottomlayer.jpg (just a regular old JPG). The code works fine on IE 5 for Mac OS X (both pictures show up, with the toplayer...
  13. ingernet

    eval() and database query

    Hi folks, I have a situation where I'm about to do a batch-add of users to a database, and I don't have all of their vital stats. When they log in, I'm having the site do a query for their db records and if they're missing info (like fax number, company name, etc), I want the users to be sent...
  14. ingernet

    is this nested select possible?

    So I have two tables: CASES and REACTIONS. in CASES, I have CASE_ID, REACTION_ID_EYES and REACTION_ID_SYSTEM. in REACTIONS, I have REACTION_ID, REACTION_TYPE and REACTION_NAME. so it looks like this: [tt] CASES Case_ID Reaction_ID_Eyes Reaction_ID_System 42 13...
  15. ingernet

    input type=text + cfstoredproc + integer problems.

    Perhaps one of you sagacious types can help me with this. I'm having problems with the value of '0' being passed to a database. I have a form that tracks users' personal info - among other things, their weight and age. I'm using CF 5 with MS SQL. The input fields for weight and age look like...
  16. ingernet

    CFLOCATION: Bad Redirect

    Okay, I'm officially frustrated. I have a CF page: mypage.cfm All it has in it is this tag: <cflocation url=&quot;http://www.yahoo.com/&quot;> No bells or whistles, just a redirect. I get &quot;Bad Redirect.&quot; Is there some server setting or install configuration that was missed that...
  17. ingernet

    CFMAIL mailing twice

    I'm new to this forum; perhaps someone could toss me a bone. :) Currently all of my forms are sending out the same mail twice. It doesn't matter what the outgoing mail server is or what the timeout is; they always send out the mail twice. I looked in CFIDE/administrator/ for clues regarding...

Part and Inventory Search

Back
Top