PHP parse_str() May 22, 2012 Pramod T P It parses the string into variables Example <?php parse_str(“first=php&second=code”); echo $first.$second; ?> Output phpcode