Jump to content

isedeasy

Members
  • Posts

    257
  • Joined

  • Last visited

Everything posted by isedeasy

  1. Ummm OK? You really think I would post links to malicious/NSFW sites? I have 250 0dd posts and been a members here for years. The only reason I have posted tinyurl links is because I don't want this thread to show up if a search is done for my domain. Thanks for taking the time to read my thread. Regards edit - I forgot to mention in my first post that the site is HTML5 and I have not got round to IE support.
  2. Hi I have been coding a new web app and would like it bug tested. The website is:- http://tinyurl.com/d7q2hlo Here is confirmation that I own the site:- http://tinyurl.com/caddg2c I have created a login for phpfreaks:- username: phpfreaks password: phpfreaks Please let me know if (when) you find any bugs or if you have any improvements you think I should make. All the text on the site is a first draft, so don't bother checking for grammar/spelling mistakes as it will all be changed Regards
  3. What if it's not today's date I want to add a month to?
  4. I am trying to add 1 month to a certain date from a database, I have searched for a solution and found the following :- <?php $todayDate = date("Y-m-d"); $dateOneMonthAdded = strtotime(date("Y-m-d", strtotime($todayDate)) . "+1 month"); echo date('Y-m-d', $dateOneMonthAdded); ?> This seems like a lot of code to add 1 month to a date? The format I store the date as is:- 2012-05-24 I need to turn this date into:- 2012-06-24 Do I have to keep converting the date like above or is there a way of doing it with less code?
×
×
  • 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.