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 TouchToneTommy 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: *

  • Users: RogueDogg1
  • Content: Threads
  • Order by date
  1. RogueDogg1

    date format adding days question

    Ok I have this code I found that I think will work with what I need. I need it to add 2 days to the current date. <? $newdate = mktime(0, 0, 0, date("m") , date("d")+2, date("Y")); ?> <? echo "$newdate"; ?> But it's echo'ing this: 1152939600 <-- makes no sense What am I missing here...
  2. RogueDogg1

    php mysql variable echo question I guess

    I have a variable that is passed via $_POST[FirstName] from apage2.php to it'self and now I do some edits to that page and submit that to apage3.php but the variable doesn't come across to the next page...how come? Example: db query to get firstname in a form then using the post method I...
  3. RogueDogg1

    need help finishing this script sorta

    function showDescription(sel, productdesc, price, productname){ var opt = sel.options; if(opt[sel.selectedIndex].value == "productname"){ productname.value = "product name"; productdesc.value = "product description"; price.value = "product price"; }else{ var ary =...

Part and Inventory Search

Back
Top