Hi, could someone please tell me how I can join two php string variables?! Here's my code:
for ($i=0; $i<$children; $i++)
{
$child_name.$i = htmlentities($_POST['child_name$i']);
$child_age.$i = htmlentities($_POST['child_age$i']);
$child_mom.$i = htmlentities($_POST['child_mom$i']);
$child_require.$i = htmlentities($_POST['child_require$i']);
}
???
THANKS!