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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by foxphpbomb

  1. foxphpbomb

    Photoshop vs Illustrator

    I am mainly a web designer and I work with photoshop, but now I'm doing a print project, and am wondering if the quality of the text is going to come out better if I do it in Illustrator as oposed to photoshop. I am using Photoshop 7. My logic tells me that if I flatten the file to a tiff at...
  2. foxphpbomb

    problem with row hiding script in mozilla

    Thanks for the detailed explanation. Actually what works for me in both browsers is: function showRow(x) { document.getElementById(x).style.display="block"; document.getElementById(x).style.display="table-row"; } Is there a way to say make all elements on the page that are hidden visible...
  3. foxphpbomb

    problem with row hiding script in mozilla

    I have this script that hides and shows a table row that is invoked on a mousover event: function showRow(x) { document.getElementById(x).style.display="block"; } function hideRow(x) { document.getElementById(x).style.display="none"; } The problem is that if I invoke the hiding part of...
  4. foxphpbomb

    anchor in select box

    I'm wondering if there's a way to create a form where when the user submits it after selecting a value in a select box, that value would get passed as an anchor. <select name="level"> <option value="level3">Level 3</option> </select> so basically when the form is submitted it would load as...
  5. foxphpbomb

    make php pages interact with powerpoint

    Im not sure this is even possible. Can someone using powerpoint on a terminal, interact with a website, so whenever he goes to the next slide in the pp presentation, the same will happen for anyone browsing the corresponding website. (they would get forwarded to a corresponding webpage)
  6. foxphpbomb

    integrating powerpoint with website

    I'm not sure this is even possible. Can someone using powerpoint on a terminal, interact with a website, so whenever he goes to the next slide in the pp presentation, the same will happen for anyone browsing the corresponding website.
  7. foxphpbomb

    Loading comma separated values into combo box in php

    Say that I have a table row that holds sizes separated by commas: (<? echo mysql_result($result, $num, "itemSize"); ?> would print s, m, l, xl) how can I load these into separate <option></option> fields?
  8. foxphpbomb

    get all elements of post reply

    I'm getting a blank page when I enter this scrit. What's more, any other html on the page disappears as well.
  9. foxphpbomb

    get all elements of post reply

    How can I get all the element of a post reply if I don't know the names of the individual post variables?
  10. foxphpbomb

    Problem with for loop

    I see what you're trying to do unfortunately it still does not work as it should. It still adds the product only once as opposed to 3 times. If i put: Response.Write (UCII.AddItem(UCII_rs,Array("RS","LITERAL","FORM","FORM","FORM"),Array("ID","1","Name","Price","radiobutton"),"increment"))...
  11. foxphpbomb

    Problem with for loop

    I'm getting th following error: Microsoft VBScript compilation error '800a0401' Expected end of statement with the carrot indicator after UCII.AddItem
  12. foxphpbomb

    Problem with for loop

    no, I'm trying to add 1 item multiple times.
  13. foxphpbomb

    Problem with for loop

    why does this not work: Dim i For i=1 to 4 UCII.AddItem UCII_rs,Array("RS","LITERAL","FORM","FORM","FORM"),Array("ID","1","Name","Price","radiobutton"),"increment" Next this is supposed to add an item to the cart 3 times. when I do this: UCII.AddItem...
  14. foxphpbomb

    Massive storage solutions

    I'm wondering what would be the optimal and cost efficient solution for a website whose storage needs need to increase over time, starting with an initial 500 gigs and incrementing over time to 1000, 2000, ....50000 gigs. I spoke to some dedicated server providers and most say they can only...
  15. foxphpbomb

    php image resizing tools

    I'm looking for a simple php script to implement that will allow me to resize an image and place a watermark on it as it is being uploaded. What solutions do you recommend?

Part and Inventory Search

Back
Top