Jump to content

TechnologyWonder

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

TechnologyWonder's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I have a web form that allows user to upload there website address(URL) to a database. My problem is, all website addresses must be formatted in the same way. i.e., "http://www.domainname.com" Anthing after ".com" doesn't matter. and really all that matters is that "http://" comes before anything else. Anyone have any ideas? I know I will probably need some sort of if command that will check to see if http:// is present, if it is, allow form to post, if not, add it... Thanks.
  2. Yeap. I think that works. But this does exactly what I need. <?php $futuretime = strtotime("+6 month"); $futuredate = date("M/d/Y", $futuretime); echo "$futuredate"; ?>
  3. Well I found this on php.net/date, will this work? $futuredate = mktime(0, 0, 0, date("m")+6, date("d"), date("Y")); echo "$futuredate";
  4. how do I automatically "echo" a date 6 months from now. For example, today's date is May 15, 2008. How do I list the date, November 15, 2008?
  5. I am building a web search engine for businesses. I am attempting to implement a system that will track individual hits a business gets and then charge then 10 cents per click. I need to develop a system in which allows a user to preload their account with funds, and as they get clicks the funds are deducted from their running balance. I think I could probably do all this buy hand but does anyone know of a good 3rd party solution that could help me out here? Thanks a bunch.
×
×
  • 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.