Thread suchen und vergleichen (124 answers)
Opened by Kathrin at 2004-12-16 16:21

Kathrin
 2005-01-14 18:32
#32722 #32722
User since
2004-12-15
158 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 print '<table border="1" rules="groups">
<colgroup>
<col width="50">
<col width="80">
<col width="300">
<col width="50">
</colgroup>
<thead>
<tr>
<th>doc_typ</th>
<th>doc_name</th>
<th>headline</th>
</tr></thead>
<tbody>';
foreach my $ptr (@{$daten})
{

print '<tr>';
print ' <td>'.$ptr->{doctyp}.'</td>
<td>'.$ptr->{docname}.'</td>

<td>'.$ptr->{head}.'</td>

<td><input type="button" value="Auswahl" onClick=""></td>

ich hab mir überlegt einfach per
Code: (dl )
select * from tbl0011990 where docname eq "$docname"

die dazugehörigen werte aufzulisten. aber wie bekomme ich es hin, dass er auch weiß welchen docnamen ich auch meine. es sind ja mehrere aufgelistet

View full thread suchen und vergleichen