I am new in PhP. I have a query
"SELECT r.client_id,c.id,t.id,a.id,o.id,c.name as cname,t.title as ttitle,a.title as atitle,o.title as otitle, l.title as ltitle, s.title as stitle
FROM og_ratings r
LEFT JOIN og_companies c
ON r.client_id = c.id
LEFT JOIN og_rating_types t
ON r.rating_type_id = t.id
LEFT JOIN og_actions a
ON r.pacra_action = a.id
LEFT JOIN og_outlooks o
ON r.pacra_outlook = o.id
LEFT JOIN og_lterms l
ON r.pacra_lterm = l.id
LEFT JOIN og_sterms s
ON r.pacra_sterm = s.id
WHERE c.id= 338
ORDER BY r.id DESC
LIMIT 2";
Result of My query is
Now i want to print first row of of resulted query and i success. But now i want to echo only two columns ltitle
and Stitle
from second row. Here i failed.
Here is my code
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "pacra1";
$conn = new mysqli($servername, $username, $password, $dbname);
//$id2 = $_GET['id'];
$sql= "SELECT r.client_id,c.id,t.id,a.id,o.id,c.name as cname,t.title as ttitle,a.title as atitle,o.title as otitle, l.title as ltitle, s.title as stitle
FROM og_ratings r
LEFT JOIN og_companies c
ON r.client_id = c.id
LEFT JOIN og_rating_types t
ON r.rating_type_id = t.id
LEFT JOIN og_actions a
ON r.pacra_action = a.id
LEFT JOIN og_outlooks o
ON r.pacra_outlook = o.id
LEFT JOIN og_lterms l
ON r.pacra_lterm = l.id
LEFT JOIN og_sterms s
ON r.pacra_sterm = s.id
WHERE c.id= 338
ORDER BY r.id DESC
LIMIT 1";
$result = $conn->query($sql);
//$array = array('1','2','3');
while ($row = $result->fetch_assoc()){
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://ift.tt/kkyg93">
<html xmlns="http://ift.tt/lH0Osb">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<table border="1">
<tr>
<td> ID </td>
<td> <?php echo $row['client_id'] ?> </td>
</tr>
<tr>
<td>Name </td>
<td><?php echo $row['cname'] ?> </td>
</tr>
<tr>
<td>Rating Type </td>
<td><?php echo $row['ttitle'] ?> </td>
</tr>
<tr>
<td>Action </td>
<td><?php echo $row['atitle'] ?> </td>
</tr>
<tr>
<td>Outlook </td>
<td><?php echo $row['otitle'] ?></td>
</tr>
<tr>
<td rowspan="2">Long Term Rating </td>
<td>Current (<?php echo $row['ltitle'] ?>) <tr><td>Previous (<?php echo $row['ltitle'][0] ?>)</td> </tr></td>
</tr>
<tr>
<td rowspan="2">Short Term Rating </td>
<td>Current (<?php echo $row['stitle'] ?>) <tr><td>Previous (<?php echo $row['stitle'][0] ?>)</td> </tr></td>
</tr>
</table>
</body>
</html>
<?php
}?>
Result of my code is
In Previos column of my code i want to print second row data of my db table. You can see my result is wrong. Can you guys please help me?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire