Question : How do I convert a 6 figure digit string to look like a date?

I have the following digits '120606' stored in a variable "prodDate".

How can I convert this to 12/06/06?

Any ideas will be appreciated.

Thanks,

Jon

Answer : How do I convert a 6 figure digit string to look like a date?

The attached gets just mimics what you are asking... should get you started
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
<?
$Array1 = array("news1-id","news2-id","news3-id");
$Array2 = array("site1-id","site2-id");

foreach($Array1 as $key => $value){
   foreach($Array2 as $key2 => $value2){    
       echo "$value,$value2<br>";
   }
}
?>
Random Solutions  
 
programming4us programming4us