Welcome Guest, Not a member yet? Register   Sign In
Just a suggestion about calendar!
#2

[eluser]marcoss[/eluser]
[quote author="Xupisco" date="1182716121"]Hi there, don't know if this is the right forum but...

When passing data to calendar, like: (as in user guide)
Code:
3  => 'http://your-site.com/news/article/2006/03/' <-- WORK
03  => 'http://your-site.com/news/article/2006/03/', <-- DON'T WORK
Just because of leading zero! Smile
I spent about 20 min trying to figure out why wasn't working!

So, the suggestion is: data could be passed with or without leading zero!

Hugs from brazil!
Sry for bad english![/quote]

Use typecasting Wink

Code:
$array = array(3,03,'03');

    foreach ($array as $n) {
        print (int) $n.'<br/>';
    }

    //will print    
    3
    3
    3


Messages In This Thread
Just a suggestion about calendar! - by El Forum - 06-24-2007, 09:15 AM
Just a suggestion about calendar! - by El Forum - 06-24-2007, 06:49 PM
Just a suggestion about calendar! - by El Forum - 06-24-2007, 08:44 PM
Just a suggestion about calendar! - by El Forum - 06-24-2007, 09:05 PM



Theme © iAndrew 2016 - Forum software by © MyBB