Help for this page

Select Code to Download


  1. or download this
    if ( $choice = $an2 ) {
     ...
    ...
    elsif ( $choice = $an1 ) {
     ...
    }
    
  2. or download this
    if ( $choice == $an2 ) {
     ...
    ...
    elsif ( $choice == $an1 ) {
     ...
    }