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 Chriss Miller 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: iffoiffy
  • Content: Threads
  • Order by date
  1. iffoiffy

    dynamically geting text box value

    Hi, On my form I have suppose 10 text boxes with names retailprice1 retailprice2 . . . retailprice10 In my javascript function I want to dynamically get the values of those text boxes. I am trying to do something like following but I know it is not right. i will appreciate your help for...
  2. iffoiffy

    How come float types takes string

    Hi, I have type float for retail price. Follwing sql seems correct $sqlstring= "update products set brand = '$brand' , brand_id = '$brand_id' , model = '$model' , description = '$description' , retail_price = $retail_price where product_id ='$prod_id'"; But I noticed even if...
  3. iffoiffy

    reloading the page

    Hi I was wondering is possible to write a code that reloads the page every 10 seconds. Thanks
  4. iffoiffy

    why use $_GET, $_POST

    Hi, I noticed when you submit a form or go to a page through link<a>, variables in the link or in the form go to the other page and you can access them with out having to first do $_GET , or $_POST, So why do we first do either _GET , or _POST Thanks
  5. iffoiffy

    Cancelling Reload

    Hi, In PHP is it possible that when you hit browser's back button , it does not reload the page but just sends the previous cached page ? Thanks
  6. iffoiffy

    new to making database backup

    Hi, I have my website on a hosting compnay server. They are using phpmyadmin for MYSQL. I need to make a back of my database. I was told to use the option export, but I really don't understand it. When I click on "Export" many options I leave the default setting enter the file name and click...
  7. iffoiffy

    trying to put NULL

    Hi, When I pick the option "allowed null" while creating a table field, and If that field does not have a value i see NULL written in that field when i browse the table using phpadmin, But when I update the table doing followig update accessories set field_A = null I don't see "NULL"...
  8. iffoiffy

    how to expire the session variable

    Hi, I set the session variable doing the following $_SESSION['emailaddress'] = $email; When user log out i want to expire that variable, how can i do that? thanks
  9. iffoiffy

    sequences of records

    Hi, I have a table with primary key name "product_id" with values for primary snp1 snp2 snp3 ... snp12 Using phpadmin when i insert a record last record inserted comes at the the last (bottom) I have another table with same primary key name but when i insert a record (snp12) something...
  10. iffoiffy

    page expires

    Hi, I am making this website. When I hit the "IE" back buton i get page expire page. it does not happen on all te pages. It just happens when hit the back buton to get to the search result page . Thanks
  11. iffoiffy

    how to fill oval with different colors

    I hope this is simple. I need to draw shape like folowing in different colors http://guidancellc.com/design2/ovaltest.htm It is hard to draw same size oval each time. Is it possible I make one oval, and then just change the colors inside. Thanks
  12. iffoiffy

    make the border blur

    Hi, How can i make the border of an image blur. I remmeber it had something to do with feather, but I forgot the next step.. Thanks
  13. iffoiffy

    can not change the colors

    Hi, I don't know what has gone wrong with my photopshop 7. When ever I open a new canvas, My foreground and background colors in toolset come as black and grey. And I can not change it. neither radient works Thanks
  14. iffoiffy

    border around

    hi, How can I put a colored border around this oval http://www.integraaccounting.com/test.html thanks
  15. iffoiffy

    SQL question

    Hi, I have a variable $Variable_A= "Honda Ford Chevy Toyota BMW"; In my database I have field "Field_1" which has a value "Ford" Now In my SQL select I want to pick record only when value of "Field_1" exists in $Variable_A How can I do that Thanks
  16. iffoiffy

    why I am geting spaces from database

    Hi, When I enter data through a form, using javascript trim function I remove all the left/right spaces if there is any before inserting in MYSQL, When I display the same data like following <td align=left><textarea name=display_size rows=4 cols=25 >'.$display_size.'</textarea></td>...
  17. iffoiffy

    How tmuch o charge for shipping?

    Hi, I don't know how people tackle this. I need to charge customers for the shipping. Now shipping price depends on weight and distance. When people add items in the shopping cart and ready to check out, I need to give them total. I don't know how much to charge them for the shipping? I...
  18. iffoiffy

    how to include swf file

    Hi, Someone told me to include swf file all you need is to use the same sytax as you use for jpg just replace with swf file ..i did the following but it does not work.. <td ><img src=Flash/header_1.swf></td> Thanks
  19. iffoiffy

    remove spaces

    Hi, Just like removespaces function is there a simple function in javascript that remove both the right and left trailing spaces .......... thanks
  20. iffoiffy

    creating index

    Hi, Is it Ok two create an index on a field after enetring data ..or will it cause any problem has to be when you create a table? Thanks

Part and Inventory Search

Back
Top