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 Mike Lewis 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. Actorial

    I want to learn OOP and frameworks. Where should I start?

    Ok will do. Thanks! If you think of anything else, let me know.
  2. Actorial

    I want to learn OOP and frameworks. Where should I start?

    Hi There, I'm a self taught programmer whose been using LAMP for 6-7 years for build simple web applications. More recently I've gotten into developing more complex applications, but I think I've fallen behind the times. My code is linear PHP and I would like to teach myself OOP and start using...
  3. Actorial

    SELECT, MAX_JOIN_SIZE problem

    I had this php page running fine, and all of a sudden after months of good service, I get this mysql error, maybe you can help? Error, query failed. The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET SQL_MAX_JOIN_SIZE=# if the SELECT is...
  4. Actorial

    What's the Fastest/Best MySQL Web Hosting?

    cool they look pretty good. were you on a shared, virtual, pro, or managed server level?
  5. Actorial

    What's the Fastest/Best MySQL Web Hosting?

    I've had numerous problems with the speed of my apps on a shared hosting server. I optimized the living crap out my queries, but still performance gain was minimal. I wanna switch to a better host. Anyone have any recommendations for lightning fast mysql servers?
  6. Actorial

    Disappearing Text with Javascript Slideshow - Help!

    Hi There, I implemented a javascript slideshow, it uses the blendTrans method, In Firefox there is no problem but in IE 7 (and 6 I think too) the orange title text disappears when the slideshow loads. Check it out: http://resales.premiumcondohotels.com/resales-listings/96 Any ideas? I messed...
  7. Actorial

    What's the Ultimate CMS for PHP/mySQL Geeks?

    Thanks for the help!
  8. Actorial

    What's the Ultimate CMS for PHP/mySQL Geeks?

    Cool thx. Since there aren't any other replies, does anyone know a good place to check out where features of different CMS's are compared???
  9. Actorial

    What's the Ultimate CMS for PHP/mySQL Geeks?

    Hi There, I'm looking into using a CMS for a new website I'm about to build. I've been designing and programming with PHP/mySQL for a good while now. I've done considerable Wordpress alterations and customizations with PHP code, but for this upcoming project I want to use something a little...
  10. Actorial

    Problem with Javascript string being sent to function...

    Wow - thanks for the tip with firebug, so much easier to debug now.
  11. Actorial

    Problem with Javascript string being sent to function...

    Hi, I have a php page which is calling a javascript function that checks a hotel reservation database to see if the property is available. The reserved dates are provided as a string (php array imploded with a space between values) to the js function, and the js function create an array out of...
  12. Actorial

    Drop-down Menu with Fill-In Option?

    I thought it might not be possible, I have a list of cities in a drop-down form field, but I want to allow them to fill in their own if the city they live in is not in the list. Can you explain this custom dropdown on a regular text input box idea? Or direct me to an example? Thanks!
  13. Actorial

    Drop-down Menu with Fill-In Option?

    Is it possible to have a drop-down menu that allows the user to fill in text if the option they want isn't in the menu list?
  14. Actorial

    Using PHP to get Outer Frame URL

    Hmm I thought about passing a get variable to the system with the outer frame url, only problem is I would have to track that url value throughout the entire site, which is a bear. What about if I set URL variable using a cookie, would that work?
  15. Actorial

    Using PHP to get Outer Frame URL

    Hi, I've designed a piece of php/mySQL software on one website that I want implement across a number of other websites. I do not want to transfer this software to each site, I just want to use it in a frame on all the other websites. Each individual client wants to have their own banner at the...
  16. Actorial

    Return only NOT NULL columns in mysql?

    Yes! That did it. I used a statement like this: <? $queryC = "SELECT IF(blobData IS NULL, 0, 1) as c1, IF(blobData2 IS NULL, 0, 1) as c2, IF(blobData3 IS NULL, 0, 1) as c3, IF(blobData4 IS NULL, 0, 1) as c4 FROM blobs WHERE blobId='$id' LIMIT 1"; $resultC = mysql_query($queryC) or...
  17. Actorial

    Change url with php or htaccess?

    If you decide to use mod_rewrite, here's a great tutorial on it: http://corz.org/serv/tricks/htaccess2.php I use mod_rewrite a lot just for SEO purposes, it seems like I get less repeat results in google as well with php query strings hidden with mod_rewrite. But it can be a major pain...
  18. Actorial

    PHP Pattern Matching

    also would like to allow @, so the list of characters I want to allow is ,.?!"-[]/'@ thanks!
  19. Actorial

    PHP Pattern Matching

    Hi There, I have question about pattern matching. What I'm trying to do is replace any characters in a string that are not alphanumerics or spaces and these characters: ,.?!"-[]/' I have this line going, it only replaces alphanumerics and spaces though: $string =...
  20. Actorial

    Return only NOT NULL columns in mysql?

    Hi, I'm wondering how to return the names of the columns that are not null in a mySQL query. Basically I have BLOBs in a database and don't want to return the data yet, just want to know whether there is data present in that column for a particular row, and then return the name of that column...

Part and Inventory Search

Back
Top