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 wOOdy-Soft 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: foxphpbomb
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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)
  5. 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.
  6. 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?
  7. 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?
  8. 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...
  9. 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...
  10. 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?
  11. foxphpbomb

    Configuring user profile sin Outlook

    Is there a way to set up outlook so all your mail is not mixed up in one folder. I'm mainly concerned with the incoming mail. Right now I have 5 pop accounts and they all get put in my inbox folder. is there a way to have separate inbox folders for each pop account? The only workaround I...
  12. foxphpbomb

    splitting name string in two

    If I receive a $_POST variable $_POST["name"] and want to split it in two based on the fact that the first name is separated from the last name with a space, and want to load the names into the varailes $FirstName and $LastName how would I do this?
  13. foxphpbomb

    passing on post variables

    I have a page that receives some post variables and is supposed to pass them on to another page. This is done through an autosubmit onload event. My question is,is there a way to receive all the variables into an array an automatically fill a form with them, without having to intercept each...
  14. foxphpbomb

    preventing duplicate records from refresh

    I would like to know if there is some code that I can use to prevent a page that has been loaded in which the values from a form are inserted in a db, from entering a duplicate record when the refresh button is hit,
  15. foxphpbomb

    include file from other domain

    I am trying to create a widget, that will display content in an iframe on another site. the problem is that I don't want to show the database connection info in the code that people copy and paste into their sites. I thought about doing an include file, but this doesn't seem to work...
  16. foxphpbomb

    eliminate forms, do it with javascript

    With all this 2.0 stuff I'm wandering if there is a way to eliminate forms altogether and process form data with javascript? Basically If I have a form on a div, and upon pressing a button is it possible to copy the values from the form fields and write them into another div?
  17. foxphpbomb

    datetime question

    I have to sort a result by a datetime field so that it will show records for the past 24 hours and also for the past 7 days. I need 2 modified sql queries of the one below. select * from table ORDER by datettimefield DESC
  18. foxphpbomb

    form causing layout problems

    Is there any way to get rid of the extra space that gets added in the layout at the end of a form?
  19. foxphpbomb

    window scrolling problem

    I have a function that is invoked on an onclick event linked to some text, that sets the diplay property of a row just below the link to block from none. The problem is that the page is verticlaly very long and when the javascript is invoked, I get scrolled all the way to the top, and then have...
  20. foxphpbomb

    controlling flash from html page

    I have a flash movie that has some buttons. What I need to do is be able to go over a link in the encapsulating html page and as a result a corresponding button in the flash page will be set to the over position.

Part and Inventory Search

Back
Top