Jump to content

skadet

Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Posts posted by skadet

  1. /agree with above post

     

    If the only thing that changed is the platform, you gotta check what else is going on!

     

    Also,

     

    You can replace this:

          $id = $row ['id'];
          $State = $row ['State'];
          $CityName = $row ['CityName'];
          $WeekendDate = $row ['WeekendDate'];
          $Email = $row ['Email'];
          $Phone = $row ['Phone'];
          $HostCouple = $row ['HostCouple'];

     

    With this:

    @extract($row);

     

    http://www.php.net/extract

  2. Hi,

     

    I have imported some data into an existing MySQL database. The old data had dates stored as YYYY-DD-MM -- the table stores data as YYYY-MM-DD. I need a way to change the values to fix this. Ideas?

  3. Hi all,

     

    Currently I have a site put together like this:

     

    Login page (session start) -> main page -> admin page

     

    The admin page is accessed by clicking on a link. No post variables, get variables -- just the session. Very simple.

     

    In firefox, main page --> admin page works fine.

    In IE7, main page --> admin page works fine.

    In FF and Safari (mac), main page --> admin page works fine.

     

    In IE6, main page --> admin page does NOT work. The screen blanks, and the URL in the location bar does not change. Pressing reload will load the page as expected.

     

    Any ideas what's up?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.