Search results

  1. M

    Who are the two best rap artists alive today?

    meaning who are your two favorite? to you the two best rappers in the world. im just curious Whoever answer i like the best gets ten points :)
  2. M

    using php code within php.?

    I probably worded it badly...but I am working on a project and i need to take the number that the user puts in and multiply it by 9.8. (to get the weight of the object) i want to be able to reference whatever that equals later..so i think this is what i want: <?php $fgravity = '$_POST["mass"]...
  3. M

    PHP date help. This should be easy.?

    <?php $today = mktime(0,0,0,date("m"),date("d"),date("Y")); echo " ".date("m/d/y", $today); ?> outputs "02/19/10" how can i output Friday, Feb 19, 2010 Thanks a lot!
  4. M

    PHP date function for exact date.?

    I know how to use php to echo something on a certain day of the week: if day = Fri echo ""its friday". But how can i do an exact date like day/month/yeah. if date = 2/15/10 echo "Happy Presidents Day" Thanks a lot.
  5. M

    I need PHP assistance please?

    I am working on a sports blog for someone, and i would like to have a "upcoming games" section. I know this is probably the hardest way to do it and if someone has an easier way, that would be great. But im trying to do "if, then" with php. I would like to have the next games be displayed on the...
  6. M

    Help with PHP date function.?

    I have the php: <?php $d=date("D"); if ($d=="Fri") echo "Have a nice weekend!"; ?> Is there a way to make it so that i can enter a specific date (ex. 12/4/09) rather than just a day. I tried just substituting the date in where it say s"fri" but no go. Maybe i'm not formatting the date...
Back
Top