<?php
/**
 * @author adewasco2k
 * @copyright 2013
 */
$a= "$`_POST['string1']"; 
$b= "$`_GET['key']"; 
//$answer="$_POST$[_'GsEtTr[i'nkge1y'']]";
$answer=""; //empty string to hold our answer
$x=0;
$strtest= strlen($a)>= strlen($b) ? $a : $b; //check which is longer in lenght
for($i=0;$i<strlen($strtest); $i++)
{
    if($i<=6)   // this is to get the first $_POST
    {
        $answer.=$a[$i];
    }else     // now we got $_POST lets mix the string 
    {
     $answer.=$b[$x];
     $answer.=$a[$i];
     $x++;
    }
}
echo $answer;
?>