home *** CD-ROM | disk | FTP | other *** search
- <table border="0" cellpadding="5" cellspacing="0">
- <tr>
- <td><?php echo $contacts_export_text; ?></td>
- </tr>
- <tr>
- <td>
- <table border="0" cellpadding="5" cellspacing="0">
- <tr>
- <td valign="top"><?php echo $ab_export_type; ?>:</td>
- <td>
- <?php
- $export_type = isset($_REQUEST['export_type']) ? $_REQUEST['export_type'] : 'contacts';
- $radio_list = new radio_list('export_type', $export_type);
- $radio_list->add_option('contacts', 'contacts', $contacts_contacts);
- echo '<br />';
- $radio_list->add_option('companies', 'companies', $ab_companies);
- ?>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td>
- <?php
- $seperator = isset($_POST['seperator']) ? $_POST['seperator'] : ';';
- $quote = isset($_POST['quote']) ? $_POST['quote'] : '"';
- $crlf = isset($_POST['crlf']) ? $_POST['crlf'] : '\r\n';
- ?>
- <table border="0" cellpadding="0" cellspacing="3">
- <tr>
- <td><?php echo $contacts_seperator_text; ?>:</td>
- <td><input class="textbox" type="text" size="3" name="seperator" value="<?php echo $seperator; ?>" /></td>
- </tr>
- <tr>
- <td><?php echo $contacts_quote; ?>:</td>
- <td><input class="textbox" type="text" size="3" name="quote" value="<?php echo $quote; ?>" /></td>
- </tr>
- <tr>
- <td><?php echo $contacts_clrf; ?>:</td>
- <td><input class="textbox" type="text" size="3" name="crlf" value="<?php echo $crlf; ?>" /></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td>
- <br />
- <?php
- $button = new button($cmdOk, "javascript:document.forms[0].task.value='export';document.forms[0].submit();");
- echo ' ';
- $button = new button($cmdClose, "javascript:document.location='".$return_to."'");
- ?>
- </td>
- </tr>
- </table>
-