Jump to content

administrator

Administrators
  • Posts

    3,095
  • Joined

  • Last visited

  • Days Won

    378

Posts posted by administrator

  1. That would make sense.

     

    When building these things, always keep in mind that in the end you are just grabbing text from a page or database and returning it.

     

    ... A web page after all is just a text document.

     

    I hope that helps.

     

    Stefan

  2. Hi,

     

    There are a couple of ways I am aware of:

     

    - Zend Optimizer

    - IonCube

     

    Each has their advantages and disadvantages.

     

    You may find your server has Zend Optimizer installed already; you can find out by using the phpinfo() function:

     

    
    

     

    I hope that helps.

     

    Stefan

  3. Hi,

     

    That is great news!! I'm happy to hear it!

     

    With fast improvements like that, you'll should be up in action in no time. I once had a chronic illness, and it took a full 9 months before I felt the positive effects of treatment. These many years later, I'm in tiptop shape ... compared to what I used to be!

     

    ;)

     

    Just keep doing what you are doing, eat well and try to relax and things should continue to turn around.

     

    Best wishes and we hope to see you back again regularly.

     

    Stefan

  4. Hi,

     

    Once and a while I mention things that fall outside the realms of web design and web programming; I only do so when I feel it is something important to point out.

     

    The Giant Housing Scam

     

    This time around, it is the giant fraud put forth by the US financial players ... this whole housing bubble was a giant ponzi scheme and a new giant ponzi scheme is being engineered now. Check out this Rolling Stone article - it sums up what happened and what is gearing up to happen over the next several years.

     

    http://www.rollingstone.com/politics/story/28816321/the_great_american_bubble_machine

     

    Though Americans are going to get the biggest shaft (as they are now,) the rest of the world will feel the pain of the scam as well .. as we are all now.

     

    Stefan

  5. You can do this with Javascript and DOM scripting. You would have to load your collection of zip codes into say a Javascript associative array, where you would pair up your zip codes to images.

     

    Once a zip code is selected, you could loop through your array and then use the DOM to set display the image.

     

    Hint: Look at 'innerHTML'.

     

    Try it with a simple array first and then expand from there.

     

    Stefan

  6. Hi,

     

    I transferred killersites.com to our dedicated server because our old host was dropping the ball ... they're puny girly-boy server couldn't handle the load.

     

    :)

     

    Anyway, do you guys notice the site/forum being a little faster?

     

    Thanks,

     

    Stefan

  7. Hi,

     

    Just upload an mp3 file of the sermon and then link to it on your web page. When a user clicks on the mp3, their default media player will pop open and play the mp3 once it is downloaded. This will all be automatic.

     

    On Windows, that would probably be Windows Media Player and on Mac, Itunes.

     

    Hope that helps,

     

    Stefan

  8. Hi,

     

    You have two options I can think of:

     

    1. Use an sql view.

    2. Use a PHP transaction.

     

    I know you know what views are so I won't go into them here. Transactions allow you to fire off multiple sql statements one after another, where if one should fail, all the sql statements are canceled. This way, you could update many tables at the same time and insure that the database doesn't get corrupted if something happened half way through.

     

    You can find the right syntax for php transactions if you do a search for it.

     

    Stefan

×
×
  • Create New...