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 dencom 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: PhoenixD
  • Content: Threads
  • Order by date
  1. PhoenixD

    PHP Send To Mail List Script

    Is there any popular scripts that are used to simply send to a mailing list? Not trying to calculate bounces or anything fancy like that, should support a couple thousand people on the list. I know of PHPList, but that's WAY overboard, I literally just need to be able to point at a database...
  2. PhoenixD

    createElement with predefined CSS in IE6 & IE7

    I am creating balloons (or tooltips), but calling them bubbles. It works perfectly in Firefox, and I have it almost working in IE7, but IE6 is just plain not showing anything. I am creating a div and all of its content (by creating a div and then assigning it innerHTML) The div I assign a...
  3. PhoenixD

    WHERE EXISTS problem

    I have a table with pennames in them, and this database is going to be used by multiple sites, but I only want to grab the pennameID and title from a specific site, but I don't want to grab the site value. This is what I came up with: SELECT pennameID, title, FROM pen_names AS t1 WHERE...
  4. PhoenixD

    PHP4 SimpleXML_load_file wrapper?

    I need to use "simplexml_load_file", which doesn't exist in PHP4. I was wondering if there was a wrapper in PHP4 that does the equivalent? Does anyone know of one? Thanks, Kerry
  5. PhoenixD

    Possible to Choose an optgroup?

    So, I'm building a category structure for a directory type of site, and I thought optgroups would be a great way of dividing up the categories (visually), but I was hoping that there was a way I could make it so they could choose the optgroup? Or is there another solution? Thanks, Kerry
  6. PhoenixD

    allow_url_fopen off - simplexml_load_file

    So the host absolutely insists on allow_url_fopen is off, understandable for security risks, but I need to load an RSS feed (xml feed). Anyone have a solution or another function that I could use to do this? -Kerry
  7. PhoenixD

    Error 1030: Got error 134 from storage engine

    Hi, So I'm not sure what the problem is, doing a delete statement that should work. I heard that it has to do with me having a MyISAM table where an InnoDB table would work. Anyway, this is the statement: DELETE t1 FROM rehabs t1, rehabs t2 WHERE t1.name = t2.name AND t1.address1 =...
  8. PhoenixD

    UPDATE SELECT #1093 Error

    UPDATE rehabs SET phone2 = ( SELECT t1.phone FROM rehabs t1, rehabs t2 WHERE t1.name = t2.name AND t1.address1 = t2.address1 AND t1.address2 = t2.address2 AND t1.city = t2.city AND t1.zip = t2.zip AND t1.url = t2.url AND t1.phone <> t2.phone AND t1.rehabID <> t2.rehabID) WHERE EXISTS (...

Part and Inventory Search

Back
Top