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 SkipVought 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: styleBunny
  • Order by date
  1. styleBunny

    client side form validation Array

    Hi All, I have this function to validate, whether a users has made a selection from a multiple selection list box. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Untitled Document</title> <script language="javascript"> function...
  2. styleBunny

    image and ul tag create a gap

    Hi again, opps my bad http://www.sminedesign.com/clients/rapidLabels/about.php i have tried a strict and a loose docType and if i remove the phyisical whitespace in the code, it seems to work in both ie and ff, with either a strict or loose doctype. Which is wierd cos i swear it wasnt working...
  3. styleBunny

    image and ul tag create a gap

    Hi again, I used this thead here: thread215-931525 to remove the unwanted image gaps in ie, but the gap remains in ff? If it has something to do with whitespace, then im not sure, i thought whitespace had to do with text flow? Confusedly, Paul.
  4. styleBunny

    image and ul tag create a gap

    Hi people, I have this site http://www.sminedesign.com/clients/rapidLabels/ when viewed in ie6 or ff1, the menu on the top RHS, has a small gap between the top image and the ul tag (the ul tag holds the menu list items), here is the code <div id="head"> <div id="navlist">...
  5. styleBunny

    image and ul tag create a gap?

    hi there, thanks for that, yeah i did post to the wrong forum, oops. thanks again, paul.
  6. styleBunny

    image and ul tag create a gap?

    Hi people, I have this site http://www.sminedesign.com/clients/rapidLabels/ when viewed in ie6 or ff1, the menu on the top RHS, has a small gap between the top image and the ul tag (the ul tag holds the menu list items), here is the code <div id="head"> <div id="navlist"> <img...
  7. styleBunny

    php mysql_fetch_array

    Hi Jpadie, Thats better, thanks for that. Though im not 100% clear on _how_ this works, its certainly does work. I shall have to look into some more php thoery me thinks. :) Its neat that the tmparray matches with the row id from the database, as opposed to starting at 0. Thanks guys, SB.
  8. styleBunny

    php mysql_fetch_array

    Thanks again guys, kenrbnsn, i got the print_r to display the array, in an array like formatt, but what i need is just the content, from the table, is there a way to put that into a variable and print that maybe? jpadie, i think what i mentioned above is achieved by your suggestion but i cant...
  9. styleBunny

    php mysql_fetch_array

    Hi jpadie, i think i under stand... $tmparray[$i][$key]=$val; The above line is building the array ($tmparray), is that true? Im not sure how to then retrieve the results in the array, echo $tmparray[1];, displays the word 'array'. I think im half right, but not sure which half :) thanks...
  10. styleBunny

    php mysql_fetch_array

    Hi everybody, I have a simple table in my database that holds my website content (text), on my page i am running this query to get the text from the database. "SELECT * FROM `content`" Is there a way from this point I can iterate through each piece of content, and display them at different...
  11. styleBunny

    FF wont clear, this is weird

    Hi Guys, Thanks for the response. I added the doctype (I did have a 'loose' doctype declaration but i didnt post it in the code, oops) the strict hasnt changed anything tho. The div2 still appears nested inside div1 when viewed in ff, where as ie renders it as i would have imagined. The...
  12. styleBunny

    FF wont clear, this is weird

    Hi guys, i have this code, it renders fine in ie6 and even well in ie4 (cept for the double margin) but ff 1.01 wont clear properly, i have tried all types of clearing but have had no success. It looks like a nested div in ff but it isnt, ie renders it correctly as two divs next to each other...
  13. styleBunny

    css table / form margins in firefox?

    Hi guys, Thank-you one and all for your input on this problem! :) The solution was to remove the form and table from the p tag, set the font size in the td style and add the margin-left to the form. Now i realise that forms / tables are block its obvious they dont belong inside a p. Shout...
  14. styleBunny

    Tecumseh Group Markup Language

    Hi peoples, Thanks for the feed back, i also found this tutorial at site point, i havent read it yet, but it could be the goods. http://www.sitepoint.com/article/bb-code-php-application thanks again, I shall investigate these links asap! SB.
  15. styleBunny

    Tecumseh Group Markup Language

    Hi guys, I am looking for a way, to allow users some basic formatting options for the text the enter in a form text area. Something similar to the way tek-tips lets you use their Tecumseh Group Markup Language, to format text, add links etc... Do these types of functions exist within php...
  16. styleBunny

    css table / form margins in firefox?

    Hi gang, hope yall is well, have this page, http://www.equilibriumradio.info/test/contact.php the form elements are positioned using a table, both the form and table tags are within a p tag, like so. <p> <form> <tabel> text and form elements </table> </form> </p> the p tag is p,h1,h2{...
  17. styleBunny

    session variables and java script

    Hi guys, Success! :) the idea i posted above does the trick. Thanks guys :) Paul.
  18. styleBunny

    session variables and java script

    Hi Lee, thanks for looking :) So maybe, within the asp page i can assign the asp var to js vars then reference thoes js vars in the external js file. Though this would rely on the external js file being able to see the local js vars. Could i pass them as part of the handleChange()...
  19. styleBunny

    session variables and java script

    Hi Tarwn, Sorry for the delay here is the sample code. The general gist of it is, two list boxes in a form are populated from different javascript arrays, the data is dates. before a date is added from the array to the list box it is evaluated against the current date to see if that date has...
  20. styleBunny

    session variables and java script

    Hi guys ad girls, I have a js function in which i use some asp session variables, which are generated when the page is loaded. if i declare the session variables, then have the js function below that (all in the head) it works fine, but when i put the js into an external js file, it stops...

Part and Inventory Search

Back
Top