Help for this page

Select Code to Download


  1. or download this
      join($column[2],$column[4])
    
  2. or download this
    $motherID = "$column[2]$column[4]" # Interpolation
    # OR (They both do the same thing)
    $motherID = $column[2] . $column[4]; # Concatenation