Jump to content

Echo MySQLi Inside HTML (Join Function)


justlukeyou

Recommended Posts

Hi,

 

I have by means of complete fluke managed to build a MySQLi join query. However I cant figure out how to echo the results inside HTML.

 

I have echoed $long_name and $name here:

 

/* check connection */
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}


$room = mysql_real_escape_string($_GET['room']);

echo $room; 

$query = "SELECT long_name, name
									FROM furniture_groups a
									INNER JOIN productdbase b
									ON a.id = b.product_id
									WHERE `room` = '$room'  LIMIT 15
									";	 	 
								
					if ($result = $mysqli->query($query)) {
					
 while ($row = $result->fetch_assoc()) {
        printf ("%s (%s)\n", $row["long_name"], $row["name"]);
    	


    ?>
But I would like to echo it here inside the HTML.

 

<div class="productrangeborder">
<div class="productsdetailsborder">
<a href="http://domain.co.uk/products/product/<?php echo $query_row['long_name']; ?>" class='productlink' rel="nofollow" ><?php echo $query_row['name']; ?>
</a>
</div>

</div></div>

<?php

}
}

?>
Link to comment
https://forums.phpfreaks.com/topic/281179-echo-mysqli-inside-html-join-function/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.