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: *

  1. degroat

    Persistent connections

    I have a website that's getting it's ass kicked so I tried changing the DB connections to use mysql_pconnect instead of mysql_connect. After doing that, I started getting mysql errors left and right, all of which were claiming that a table didn't exist inside a certain database... basically it...
  2. degroat

    Another Quick CSS Question

    Okay... I didn't mean to submit the lats post, here is the question that the thread was supposed to be about.... I'm trying to set up my three columns and I want the background color of the "main" div to carry down behind the divs that are inside of the "main" div. But, I guess because I'm...
  3. degroat

    Another Quick CSS Question

    I'm trying to buy into this whole 'death to tables' concept but it's really annoying when something that should be simple isn't when you don't use tables.
  4. degroat

    Quick CSS Question

    That's what I thought.... thanks.
  5. degroat

    Quick CSS Question

    I've got two divs right next to each other that have a different amount of content in them.... how do I get the div's to be the same height (so the background color of the shorter one carries down)?
  6. degroat

    Odd Characters....

    I recently moved a website and in doing so I used phpMyAdmin to export my DB. Unfortunately, when I exported it, it converted a bunch of characters into nonsense.... Here is an example: http://www.checkingline.com/2006/07/08/the-crappy-goaltenders-round-up/ I don't have access to the...
  7. degroat

    Replacing odd characters

    Can someone tell me how to do a string replace to convert the little diamonds with question marks in them into a regular apostrophe? These are what I'm talking about: http://www.degroat.net/pix/diamondqmarks.gif
  8. degroat

    Query Error (AES_ENCRYPT)

    Son of a.... I knew it was going to end up being something stupid. Thanks
  9. degroat

    Query Error (AES_ENCRYPT)

    I havae a user database set up where the passwords are encrypted using AES_ENCRYPT with the date the user joined being the salt for each user. The inserts work fine for the password, but for some reason I'm getting an error on this statement below when I try to update.... update users set...
  10. degroat

    Upload to different Domain

    Sponge, If you're wanting to move the file to a different server once it is uploaded then I suggest simply using PHP's ftp functions to move it after it's uploaded. - degroat
  11. degroat

    Browser Issues

    Hi, I'm trying to adapt some existing code into something that I'm doing and I'm having some issues w/ the differences between IE and Firefox. Here's the URL in question: http://www.degroat.net/temp/nav.php Works great in Firefox. In IE, the links are lower and the div shows up too low...
  12. degroat

    Collation

    Can someone please tell me what I need to set my Collation to for a varchar field that's just uses normal english characters?
  13. degroat

    Totaling values from selects

    I'm not even sure where to start w/ this, so I guess I'll begin by explaining what I want to achieve... The page I need to create is for a fantasy hockey game. Users would use this page to select their 12 forwards, 6 defenseman, and two goaltenders. As they select their players, the total...
  14. degroat

    emailing html file? is that possible?

    What you can do is create a file... say email_content.html... and then open the file in your script... $body = file_get_contents("email_content.html");
  15. degroat

    Search query skips xx/08 & xx/09 data

    Why are your dates in your database with that format?
  16. degroat

    Using PHP to print to Avery labels

    err... a CSV file, not a CVS file...
  17. degroat

    Using PHP to print to Avery labels

    I'd suggest having PHP create a CVS file that you can then import using the Avery wizard.
  18. degroat

    getimagesize

    After banging my head on a brick wall numerous times, I figured out the problem... the reason why file_exists was finding the file was because the file technically did exist... but the file was 0 bytes... so it didn't load up.
  19. degroat

    getimagesize

    The problem only occurs when the images don't exist... file_exists returns TRUE when it should return FALSE. What I need to do is limit the size of the image if it larger than a certain size. So, to do that I'm using what you showed me before... getimagesize. But, if that doesn't find the...
  20. degroat

    getimagesize

    "1.6.2 or higher"

Part and Inventory Search

Back
Top