これらの 2 つの繰り返しを組み合わせて、両方の配列項目を Web ページに表示できるようにすることができますか? 私がやろうとしているのは、videoURL と対応する GroupName を Web ページに表示することです。
初め:
try
{
$sql = 'SELECT URL from videoclip';
$result = $pdo->query($sql);
}
catch (PDOException $e)
{
$error ='Error fetching videos:'.$e->getMessage();
include'error.html.php';
exit();
}
while ($row = $result->fetch())
{
$URLS[] = $row['URL'];
}
include 'index.html.php';
2番:
try
{
$sql = 'SELECT GroupName from videoclip';
$result = $pdo->query($sql);
}
catch(PDOException $e)
{
$error ='unable to fecth data:'.$e->getMessage();
include'error.html.php';
exit();
}
while ($row = $result->fetch())
{
$GroupNames[] = $row['GroupName'];
}
include 'index.html.php';