PHP Mysql link
Ik heb op mijn website een tabel met gegevens uit de database. Nu wil ik als ik er op klik dat er een pop up verschijnt met de gegevens van dat ID. Op het begin lukte het alleen stond er geen tabel omheen. Nu heb ik er een tabel omheen gebouwd en nu werkt de link niet meer. Hij laat wel de gegevens zien. Dit is mijn code:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
foreach ($articles as $article) { ?>
<?php echo "<tr>"; ?>
<A href="article5.php?id=<?php echo $article['article_id'];?>" onclick="window.open('article5.php?id=<?php echo $article['article_id'];?>','Live',
'width=400,height=500,scrollbars=no,toolbar=yes,location=yes'); return false">
<?php echo "<td>". $article['voorenachternaam']. "</td>"; ?><?php echo "<td>" .$article['datum']. "</td>"; ?><?php echo "<td>" .$article['telefoonnummer']."</td>"; ?>
<?php echo "</tr>";
echo "<br />"; ?>
</a>
foreach ($articles as $article) { ?>
<?php echo "<tr>"; ?>
<A href="article5.php?id=<?php echo $article['article_id'];?>" onclick="window.open('article5.php?id=<?php echo $article['article_id'];?>','Live',
'width=400,height=500,scrollbars=no,toolbar=yes,location=yes'); return false">
<?php echo "<td>". $article['voorenachternaam']. "</td>"; ?><?php echo "<td>" .$article['datum']. "</td>"; ?><?php echo "<td>" .$article['telefoonnummer']."</td>"; ?>
<?php echo "</tr>";
echo "<br />"; ?>
</a>
</table>
Weet iemand wat er fout gaat?
Alvast bedankt
Julian
- Aar -:
Gelieve in het vervolg bij code de [code][/code]-tags gebruiken.
Hier kan je meer lezen over de mogelijke opmaakcodes.
Alvast bedankt!
Hier kan je meer lezen over de mogelijke opmaakcodes.
Alvast bedankt!
Gewijzigd op 09/07/2015 13:40:56 door - Ariën -
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
foreach ($articles as $article) { ?>
<td><A href="article5.php?id=<?php echo $article['article_id'];?>" onclick="window.open('article5.php?id=<?php echo $article['article_id'];?>','Live',
'width=400,height=500,scrollbars=no,toolbar=yes,location=yes'); return false">
<?php echo "<td>". $article['voorenachternaam']. "</td>"; ?><?php echo "<td>" .$article['datum']. "</td>"; ?><?php echo "<td>" .$article['telefoonnummer']."</td>"; ?>
<?php echo "</tr>";?>
</a></td>
<?php } ?>
</table>
foreach ($articles as $article) { ?>
<td><A href="article5.php?id=<?php echo $article['article_id'];?>" onclick="window.open('article5.php?id=<?php echo $article['article_id'];?>','Live',
'width=400,height=500,scrollbars=no,toolbar=yes,location=yes'); return false">
<?php echo "<td>". $article['voorenachternaam']. "</td>"; ?><?php echo "<td>" .$article['datum']. "</td>"; ?><?php echo "<td>" .$article['telefoonnummer']."</td>"; ?>
<?php echo "</tr>";?>
</a></td>
<?php } ?>
</table>
- wes - op 09/07/2015 13:23:45:
basis html hier wat dit oplost.
Toevoeging op 09/07/2015 14:17:08:
Is dit niet makkelijker?
Code (php)
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
<?php
foreach ($articles as $article)
{
echo '<tr onclick="window.open(\'article5.php?id='.$article['article_id'].'\',\'Live\',\'width=400,height=500,scrollbars=no,toolbar=yes,location=yes\'); return false">';
echo '<td>'.$article['voorenachternaam'].'</td>';
echo '<td>'.$article['datum'].'</td>';
echo '<td>'.$article['telefoonnummer'].'</td>';
echo '</tr>';
?>
foreach ($articles as $article)
{
echo '<tr onclick="window.open(\'article5.php?id='.$article['article_id'].'\',\'Live\',\'width=400,height=500,scrollbars=no,toolbar=yes,location=yes\'); return false">';
echo '<td>'.$article['voorenachternaam'].'</td>';
echo '<td>'.$article['datum'].'</td>';
echo '<td>'.$article['telefoonnummer'].'</td>';
echo '</tr>';
?>
Gewijzigd op 09/07/2015 14:17:52 door - SanThe -
Dank je wel! Het werkt.