Hi,
Suppose, we have 3 variables var1, var2 and var3. The latestm, var3, is an array contains x elements. Now I want to
print theses variables using one printf() function to get out a print out like this:
var1 value: The value of var1 is here.
var2 value: The value of var2 is here.
var3 values: Element 1 value, Element 2 value, Element 3 value,....Element x value
$var1 = "My name is nothing :)";
$var2 = "I have one location but not here :(";
$var3 = array("Apple","Mango","Kiwi");
printf("var1 value: %s<br>var2 value: %s<br>var3 values: %s",$var1, $var2, $var3);
If I used List, each loop, I would not get the print out pattern as descriped above.
So waht's the solution? Is this possible?