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 gkittelson 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. PhoenixD

    PHP Send To Mail List Script

    I've found a couple, nothing major, and I'm just working out all the functionality, I'll get back with the code I use once it's fully up and working :) I have changed a few of the settings... (for PHPMailer and so on) so those would probably have to be reset to a default.
  2. PhoenixD

    PHP Send To Mail List Script

    Wow, thank you! I'll test it out, debug, etc., and let you know. Thanks! -Kerry
  3. 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...
  4. PhoenixD

    createElement with predefined CSS in IE6 & IE7

    Thanks - I guess I have a quarky version of IE - doesn't show that error :( So the difference was the "hash" in IE 6 doesn't include the query string after, as it does in IE7 and FF. Thanks!
  5. 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...
  6. PhoenixD

    WHERE EXISTS problem

    correction to last code: SELECT t1.pennameID, t1.title FROM pen_names AS t1 WHERE EXISTS ( SELECT t2.site, t2.pennameID FROM pen_names AS t2 WHERE (t2.site = 'prnewsy' OR t2.site = 'all') AND t2.pennameID = t1.pennameID ) This brings up a result and would seem to be the right...
  7. PhoenixD

    WHERE EXISTS problem

    Ok... well I have it working now, but as you said it probaly isn't getting the results I want. Could you give me an example of how it works? I changed the code a bit, but I think it has the same effect - the one I don't want. SELECT pennameID, title FROM pen_names WHERE EXISTS ( SELECT...
  8. PhoenixD

    WHERE EXISTS problem

    Heh, I feel foolish. The } wasn't in my program, not sure why it ended up there when I pasted, but it was the comma. Thanks :)
  9. 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...
  10. PhoenixD

    PHP4 SimpleXML_load_file wrapper?

    Haha, I completely agree with it being obsolete, unfortunately someone asked me to implement a script of mine (I made it for PHP 5) into many sites (over 30), all using different hosting, most of which or none using PHP 5. I simply don't want to go through the haggle with the sites hosters to...
  11. 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
  12. PhoenixD

    Possible to Choose an optgroup?

    Ok, thanks, that'll have to do unless I really want to go out of my way ^_^ -Kerry
  13. PhoenixD

    Possible to Choose an optgroup?

    Yeah... I was hoping I could change that. I want to categories options in an easy way, but the top category needs to be choosable as well. For example: Arts Music Painting Poetry Writing Education Higher Education Instructional Facilities Magazines Websites But...
  14. 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
  15. PhoenixD

    allow_url_fopen off - simplexml_load_file

    worked perfectly - thanks.
  16. 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
  17. 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 =...
  18. PhoenixD

    UPDATE SELECT #1093 Error

    Ahh yes but my main objective isn't how to delete duplicate entries - I can do that. Its transfering the phone field of one entry into the phone2 field of the other entry, thereby keeping all the data and losing none. -Kerry
  19. PhoenixD

    UPDATE SELECT #1093 Error

    Sorry I didn't mentioned before: 5.0.45
  20. 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