Jump to content

techiefreak05

Members
  • Posts

    494
  • Joined

  • Last visited

    Never

Posts posted by techiefreak05

  1. Yeah, only 2 days.

    Add a little "BETA" sticker up there and you've got yourself a veritable Web 2.0 application! The lack of a sign-up form is a crippling error-without any way to get new users, there isn't a way to post any content, and without content there won't be any users in the first place. Ergo, failure.

     

    Meaning it's good?

     

    Yeah, I know. I still have to make the content. Which I know how to go about doing that.

  2. um .. well ... doesn't meet the requirements to be considered good... the design is very, very Web 0.1-ish. we're up to "2.0". haha. Any way, I would consider learning photoshop, or flash or some kind of program and not rely entirely on CSS until you know what youre doing 100%.

  3. its pretty good in my opinion.. except:

     

    >> spice up the MyPhotoMojo Daily Blog font. its very bland.

     

    >> wheres the bang!? haha. like glossy-ness or something, im in love with glossy-ness.

     

    but better than anything i can do.

  4. i have the following code thats supposed to take a variable that holds a birthday, such as "03-24-1990",and show the age, such as "17" its not off by much, but it IS off by one year..

     

     <?php
    function birthday($birthday){
    
    list($month,$day,$year) = explode("-",$birthday);
    
    $month_diff = date("m") - $month;
    
    $day_diff   = date("d") - $day;
    
    $year_diff  = date("Y") - $year;
    
    if ($day_diff < 0 || $month_diff < 0){
    
    
    $year_diff--;
    
    }
         return $year_diff;
    }
    ?>

     

    I use that one way, like this

     

    <?php
    $bday="03-24-1990";
    birthday($bday);
    ?>
    

     

    That outputs as: 16, when it should output 17, because that's my birthday!

  5. the public profile thing is not a bug...

     

    you have to be at least 16 to have a public profile, but you can add friends and they can view your profile, it makes sure only you know who is seeing your profile.

     

    and what is super buggy !?

  6. I'll look into the name thing.

     

    Yeah, I noticed the age thing, I'll find out why it's knocking an age off.

     

    Are you sure? I havent had any problems with city or state at all. Did you pick a state when you signed up, and it said "select state" on the edit profile page? that still means it updated.

  7. Of course I read onlican's post! :) I read everyones! and I have just put up the old login file, and that works fine, and I have somebody whos going to help me get mine working for later today, but in the mean time I will try all of your samples.

     

    Thanks alot.

×
×
  • 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.