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 bkrike 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: riffy
  • Content: Threads
  • Order by date
  1. riffy

    applet question

    Hi guys, I hope everyone is doing well. I haven't posted in awhile because I had started medical school but I had to come home for a family emergency and have a temporary job. Anyway I have a question regarding applets using html. I'm posting the code below and I'll explain the problem after...
  2. riffy

    adding backslashes in form

    Hi guys, I have a multi-page form and as the user proceeds through each step, the variables from the previous page(s) are carried over into the next page. The final page inserts all values into a mysql database. However, I can't seem to get the apostrophes to work. It seems that thru each step...
  3. riffy

    querying two tables

    I have a question in getting values from two tables and checking to see whether they are equal. The first table is called "A". The second table is called "B". Users get assigned a group_id number associated with their user_id in table "B". If they have been...
  4. riffy

    php redirects

    Hi guys, How do I redirect a user to another page using PHP? Header ("Location: "); ??? Arif
  5. riffy

    referer question

    Hi guys, I have a page in which I'm checking to see if the user came through the referring page or not. $HTTP_REFERER = 'http://test.philipslighting.com/nam/events/lightfair/request.php'; $referer = $HTTP_REFERER; if (!($referer)) { header ("Location: emailcheck.php"); exit; }...
  6. riffy

    request.getParameter problem

    I have a statement: String strName = request.getParameter(&quot;gameName&quot;); gameName is the name of the input box on the previous page the sql query I have is: <% strQuery = &quot;SELECT * FROM videogames WHERE &quot; + strName + &quot;LIKE '%VName%'&quot;; rs =...
  7. riffy

    check code

    can someone please check this code and tell me if it's ok? basically it's checking whether to send an email or not... after the user is done taking all 9 quizzes, an email is sent listing the user's scores...however, in my code, the email is never sent, it's not even accessing the tables for...
  8. riffy

    pop-up window by clicking on radio button

    Hi guys, I have a question. I have a form with 5 questions, each question with 4 radio buttons. The radio buttons all have the name corresponding with the question number. So for question 1 the radio buttons are of the type <input type=&quot;radio&quot; name=&quot;question1&quot...
  9. riffy

    php and verisign

    Hi all, It's been a long time since I wrote. I had a question about saving values in my form somewhere before sending them to Verisign because some of the variables get lost in the transaction part. I don't know how many of you have used VeriSign on sites AND with PHP but basically I'm making a...
  10. riffy

    parse string

    hey everyone, i wanted to know whether it's possible to take a phone number in this format: 123-123-1234 and parse it into this: 123 123 1234 thanks arif
  11. riffy

    retrieving multiple checkbox values

    hey guys, I have a form that has 5 checkboxes each with the same name but different values. The users can click on multiple checkboxes. Those values are inserted into a table in a database however they are entered as separate fields. I want to know whether there's a script to get the checkbox...
  12. riffy

    inserting into multiple tables

    Hi guys, I really need to know this if you guys can help me. I want to know how to enter records into two tables in a database. One table name is Customers and the other table name is Transactions. There is a form to select a travel package. The first 6 fields are inserted into the Customers...
  13. riffy

    css href question

    i have a style sheet in which i've specified the properties for the <a> tag...however is there a way to override it? i have a table with 3 rows and 2 columns..the first and the third row have includes and the first column in the second row has another include...the main content of the page is in...
  14. riffy

    drop down question

    Hi guys, I posted last week too but I didn't get an answer...I've been trying to fix this problem that I have but with no luck... I have two drop-downs, when you select an option in one, it populates the other using a javascript file...the first dropdown has 4 options say A,B,C and...
  15. riffy

    netscape not reading option value tag

    Hi all, I have two dropdowns, one populated by the other. The first dropdown has 4 items say for example A,B,C,D. After the user selects one of these, the second dropdown is populated with more options. When the user selects an item from the second dropdown, and clicks on a submit button a page...
  16. riffy

    looping using array

    Hi all, I have a page that has 5 lamp categories. Clicking on any of them will populate a drop-down with their respective bulb types. Now when the user clicks on one of the bulbs in the drop down, it brings up a page that displays the bulb images. Suppose one of the bulb types in the drop down...
  17. riffy

    selecting values from diff page

    Guys, Another question, hopefully someone can help me. I have to program a category search on the mysql database that the site is using. In the database, there are 2 tables, say for example cproduct and hproduct. Hproduct has alot of elements inside it and I want to perform a category search on...
  18. riffy

    select question

    hi, this is my first time posting to this forum...i tried a keyword search but apparently the search is down... my question is that in my database there are two tables called halogenproduct and cflproduct.. now on the index page for the site, there is a drop down box which lists the total...
  19. riffy

    concat

    hi guys, how do you concat strings in php? i have two values, one for the first name and one for last name.. i want to join them but how? i tried $fname + $lname i also tried $fname & $lname do i have to use the period? thanks arif X-) s-)
  20. riffy

    parse error

    hey guys, i wanted to know what does it mean when you have a parse error? thanks arif X-) s-)

Part and Inventory Search

Back
Top