> -----Original Message-----
> From: Dan Shirah [mailto:[EMAIL PROTECTED]
> Sent: Monday, February 19, 2007 2:08 PM
> To: Brad Fuller
> Cc: Jay Blanchard; php-general
> Subject: Re: [PHP] Month
> 
> Okay, when I try the sprintf I get the following error when I try to save
> my
> form
> 
> Incorrect syntax near 's'.
> 
> <select name="month">
>     <?PHP
>      for ($m=1;$m<=12;$m++) {
>      $months=date('M', mktime(0, 0, 0, $m, 2));
>      echo "<option value=\"sprintf('%02s', $m)\">$months</option>";
>      }
>     ?>
> </select>

I'm pretty sure you need to use double quotes on the format string.

echo "<option value=\"".sprintf("%02s", $m)."\">$months</option>";

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to