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 IamaSherpa 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. eaglesphan

    Check my work for redirect

    Hello, I need to redirect all requests that go to this URL: http://www.desu.edu/cgi-bin/publish/webevent.cgi to this URL: http://www.desu.edu/calendar/ After studying the Apache rewrite guide and being totally confused, here is my attempt: RewriteEngine on RewriteRule ^/cgi-bin/publish/$...
  2. eaglesphan

    How to show a text box based on a menu selection

    Tada TADA!!! You all are the best! This piece solves a LOT of little headaches for me and it's going right in my snippits. It worked like a champ. Thanks so much!
  3. eaglesphan

    How to show a text box based on a menu selection

    Cool! But since I am a JavaScript klutz, can you check me? Once I get this working, I'm going to save it in my snippits. Function: function showHide(Department) { if (Department.selectedIndex == Department.options.length - 1) document.forms['contactus'].elements['Other'].style.display =...
  4. eaglesphan

    How to show a text box based on a menu selection

    First, I know this has probably been answered many times before but the search feature on the forum is undergoing maintenance. I have a dynamically generated list box and the last option is Other (a static option). If any choice but Other is selected, nothing happens, form gets submitted as...
  5. eaglesphan

    How to code to include quotes in a form value

    It's been a long day and I'm drawing a blank. I have a form that has a radio button that when checked will insert this value into a MySQL database: value="<img src="../../images/content/meac_button.gif">" The problem obviously is the two sets of quotes. As is, the value only sees <img src= as...
  6. eaglesphan

    Help with SQL for multiple search variables

    Ahhhh! I see now and it makes more sense. I will now turn my attention to the PHP aspect of it and work on that this afternoon. Thanks a bunch.
  7. eaglesphan

    Help writing a WHERE clause

    OK that helps. Thanks.
  8. eaglesphan

    Help with SQL for multiple search variables

    I have to create a search page with up to six search parameters. They are month, year, person type, event, department, and category. My table has one column each for the month, year, and event. It has three person type columns (person_1, person_2, and person_3), two for departments, and two for...
  9. eaglesphan

    Help writing a WHERE clause

    OK that works. One more question. Is there a way to make it so that when you insert a record, the date column (which is of type date) automatically updates itself with the current date kind of like auto-increment for the id column?
  10. eaglesphan

    Help writing a WHERE clause

    I would like to write a SELECT statement where I can get the last 30 days worth of press releases. Reading the manual I found this code example: SELECT name, birth FROM pet WHERE MONTH(birth) = MOD(MONTH(CURDATE()), 12) + 1; This is close to what I'm looking for but not quite. I have solved...
  11. eaglesphan

    Looking for an incredible Flash site....

    Nevermind. I finally found it. It was http://www.neostream.com/
  12. eaglesphan

    Looking for an incredible Flash site....

    Hello all, SOMEwhere amongst the many forums I visit, someone mentioned a website that had this incredible use of Flash. I can't remember anything about the address. All I remember is that it took a while to load and it showed an alien getting zapped with electric jolts while it loaded. (10K...
  13. eaglesphan

    how do i make a pdf from word document

    To make a PDF from a Word document, you must have Adobe Acrobat with Distiller installed on your system. When you are ready to make the PDF you click on 'Print' and when the Print window opens, you must then select Acrobat Distiller as the printer. Word then prints the file to Distiller and...

Part and Inventory Search

Back
Top