It parses the string into variables
Example
<?php
parse_str(“first=php&second=code”);
echo $first.$second;
?>
Output
phpcode
It parses the string into variables
Example
<?php
parse_str(“first=php&second=code”);
echo $first.$second;
?>
Output
phpcode