Extra Field

Discussion in 'Troubleshooting' started by Guest_duny, Dec 2, 2003.

  1. Guest_duny

    Guest_duny Guest

    How can i get theis to work
    <tr>
    <th><b>Where to send File</b></th>
    <td>
    <input type=radio name=is_male value="{$u.email"} {if $u.is_male}checked{/if}>PCS Phone
    <input type=radio name=is_male value="{$u.phone}" {if $u.is_male==$u.phone}checked{/if}>PCS Email (N400 and Treo)
    </td>
    </tr>

    I am usin this in a mail() format
    like
    $to = $_SESSION['_amember_user']['is_male']; ( the preset are already in place) I just want to change things up alittle but use the is_,ale control
    Or is there a differnt way to use the radio buttons for what i want

    then
    mail($to,$phonemsg, $gcdurl,"From: <$email1>");
    is there a corrct way to set up this field
  2. alex-adm

    alex-adm Guest

    It will not work. You'd better add select field as described in docs, then customize send_signup_email function.

Share This Page