Here is a cool trick you might not know if you want to return multiple values from a function and assign them to variables with different names each.
Posted on 12 December 2011.
Here is a cool trick you might not know if you want to return multiple values from a function and assign them to variables with different names each.
Posted in PHPComments (0)
Posted on 16 November 2010.
Posted in PHPComments (0)
Posted on 09 November 2010.
Whether you want to build your own forum, publish the messages from a mailing list on your Website, or write your own cms: there will be a moment that you’ll want to store hierarchical data in a database. And, unless you’re using a XML-like database, tables aren’t hierarchical; they’re just a flat list. You’ll have to find a way to translate the hierarchy in a flat file.
Storing trees is a common problem, with multiple solutions. There are two major approaches: the adjacency list model, and the modified preorder tree traversal algorithm. Read the full story
Posted in MySQL, PHPComments (0)
Posted on 18 September 2008.
this.my_movie.alphaTo(100, .5, ‘easeOutCubic’, .5, “playMovie”)
function playMovie():Void{
gotoAndPlay(2)
}pop_prod.tween(“_x”,194, 0.8, “easeOutCirc”, 0);
pop_prod.alphaTo(0,0.8,”easeOutCirc”,1,
{ startscope:this, startfunc:”closenik()”, scope:this, func:”closenik()” }
);
Posted in FlashComments (0)
Posted on 08 July 2008.
At first glance, functions can be mind-boggling. At the same time, however, they are extremely useful. They help programmers around the world to make their code simpler, faster, and more readable and understandable. That is why it’s important for you to come to grips with the multitude of abilities that functions give you. With that said, lets start with a simple example of what a function looks like: Read the full story
Posted in Flash, ProgrammingComments (0)
