2017-12-05 7 views
-1

誰もが公式化されていない生データにしか到達できないため、このデータをPHP/HTMLで集計するのに役立ちます。データを集計するMySQL PHP

// Price and Flight Select Statements 
$pricesql = "select PriceID,RouteID,ClassID,Price from price;"; 
$printpricesql=mysqli_query($connect,$pricesql); 


while($row=mysqli_fetch_array($printpricesql)) 
{ 
    echo $row['PriceID']; 
echo $row['RouteID']; 
echo $row['ClassID']; 
echo $row['Price']; 
} 


$flightsql = "select flightid,routeid,departuredate,arrivaldate from 
flightschedule;"; 
$printflightsql=mysqli_query($connect,$flightsql); 

while($row=mysqli_fetch_array($printflightsql)) 
{ 
echo $row['flightid']; 
echo $row['routeid']; 
echo $row['departuredate']; 
echo $row['arrivaldate']; 
} 
+2

あなただけのHTMLのテーブルを作成する方法を求めている:これは私が使用しているコードのですか? – David

+0

私はあなたが何を意味するかは分かりません... 'echo '

'。$ row [your_index]。 '

'; '??? – Zyigh

+0

はい、私の範囲でしたが、私はまだHTMLを介してこのデータを表示するのに苦労しています。 –

答えて

1
// Price and Flight Select Statements 
$pricesql = "select PriceID,RouteID,ClassID,Price from price"; 
$printpricesql=mysqli_query($connect,$pricesql); 

echo '<table>'; 

// headers 
echo '<tr>'; 
    echo '<th>Price Id</th>'; 
    echo '<th>Route Id</th>'; 
    echo '<th>Class Id</th>'; 
    echo '<th>Price</th>'; 
echo '</tr>'; 

while($row=mysqli_fetch_array($printpricesql)) { 
    echo '<tr>'; 
    echo '<td>'.$row['PriceID'].'</td>'; 
    echo '<td>'.$row['RouteID'].'</td>'; 
    echo '<td>'.$row['ClassID'].'</td>'; 
    echo '<td>'.$row['Price'].'</td>'; 
    echo '</tr>'; 
} 
echo '</table>'; 

$flightsql = "select flightid,routeid,departuredate,arrivaldate from flightschedule"; 
$printflightsql=mysqli_query($connect,$flightsql); 

echo '<table>'; 

// headers 
echo '<tr>'; 
    echo '<th>Flight Id</th>'; 
    echo '<th>Route Id</th>'; 
    echo '<th>Departure Date</th>'; 
    echo '<th>Arrival Date</th>'; 
echo '</tr>'; 

while($row=mysqli_fetch_array($printflightsql)) { 
    echo '<tr>'; 
    echo '<td>'.$row['flightid'].'</td>'; 
    echo '<td>'.$row['routeid'].'</td>'; 
    echo '<td>'.$row['departuredate'].'</td>'; 
    echo '<td>'.$row['arrivaldate'].'</td>'; 
    echo '</tr>'; 
} 
echo '</table>'; 
+0

はい、私の範囲でしたが、私はまだこのデータをHTMLで表示するのに苦労しています。どうもありがとう :) –