For循环通过电子邮件发送表中每行一个字符

时间:2018-05-21 17:43:42

标签: php html mysql

我一直坚持这个问题。我的要求是将数据从mySQL发送到客户端。我从公司代码库中的另一个页面获取代码,该代码库在通过电子邮件发送时有效。

enter image description here

我遇到的问题是它每行只发送一个字符。

enter image description here

这是我的代码:

$message = "
                <br /><hr /><br /><table style='font-size: 12px; width:100%'>
                <tr>
                    <td td width='25%'><strong>Oligo Name</strong></td>
                    <td width='10%'><strong>Base</strong></td>
                    <td width='10%'><strong>Scale</strong></td>
                    <td width='10%'><strong>Mod</strong></td>
                    <td width='10%'><strong>Mod Position</strong></td>
                    <td style='word-break: break-all; width: 500px;'><strong>Oligo Sequence</strong></td>
                    <td width='15%' style='text-align: right'><strong>Price</strong></td>
                </tr>";
                $SampleID = 0;
                $maxrow = $OligoQty;
                for ($i; $i < $maxrow; $i++) {
                    if(trim($SampleName) == '' && trim($Sequence) == '')
                            continue;
                            // $SampleID++; 
                    $bases = preg_replace('/\s+/', '', $Sequence); 
                    $seq_length = strlen($bases);
                    $message .= "
                                <tr>
                                <td width='200'>{$SampleIDS} . {$SampleName[$i]}</td>
                                <td width='40'>{$sequence_length[$i]}</td>
                                <td width='40'>{$SampleScale[$i]}</td>
                                <td width='40'>{$modification[$i]}</td>
                                <td width='40'>{$mod_position[$i]}</td>
                                <td style='word-break: break-all; width: 500px;'>{$Sequence[$i]}</td>
                            </tr>";
                                </tr>";
                }

当我删除for循环时,它会完美地打印出该行:

enter image description here

我认为我的for循环有问题导致它做到这一点,我不知道为什么。我将$ maxrow硬编码为2,这就是我为电子邮件获取2行的原因。任何帮助将不胜感激!

0 个答案:

没有答案