I have an array of colors having dynamic values which depends on database. now these values are required in a function which takes values only like this function('para1','para2','para3','para4') where param1 to param4 are color values in an array. Problem is how can i parse these values to that function in the above stated format.Only a programminng logic required.Language is php.
Suppose dynamic array is color[]=('red','maroon','blue','green'); and these value should be passed to this function like :setLineColor('red','maroon','blue','green');
I m using this function for creating graphs.(Lib using PHP_graphlib: link: http://www.ebrueggeman.com/phpgraphlib/documentation.php) Any other suggested library is welcomed.Plz provide a simple example with it.