0
PHPとMySQLを使用して一連のデータがテーブルに返されています。このデータの最後に静的要素を含むリンクを構築するための要素を使用してリンクを貼りたいと思います。PHP URLの生成
すなわち$ urlStart /名前-インストーラ-日 - メール - GNO $ urlEnd
<tr>
<th>Installer Ref:</th>
<th>Fitter</th>
<th>Guarantee</th>
<th>Equipment</th>
<th>Installed</th>
<th>Options</th>
</tr>
</thead>
<?php
$i=0;
while ($i < $num) {
/* $f1=mysql_result($result,$i,"installer"); */
$f2=mysql_result($result,$i,"fitter");
$f3=mysql_result($result,$i,"guarantee_no");
$f4=mysql_result($result,$i,"equipment");
$f5=mysql_result($result,$i,"certificate_no");
$f6=mysql_result($result,$i,"install_date");
?>
<tbody>
<tr>
<td><?php echo $f5; ?></td>
<td><?php echo $f2; ?></td>
<td><?php echo $f3; ?></td>
<td><?php echo $f4; ?></td>
<!-- <td><?php echo $f5; ?></td> -->
<td><?php echo $f6; ?></td>
は、しかし偉大な感謝を厥それは私がそれを耳に関連するリンクを印刷する必要があるたびに同じリンクを出力しますテーブルの行私はこのような結果を得ています: –
'$ link =" $ urlStart/name- $ f6- $ email- $ f3 $ urlEnd "? – Lekensteyn
あなたは星のように多くのことに感謝しました。 –