Jump to content

Recommended Posts

I want to print image in the following Php code along with the name of the image. I want to print name in first row of the html table, while full image in the 2nd row. row[5] contain image file name such as abc.jpg. I want to print whole image url like this in second row:

https://xyz.com/po/row[5]

Can any body help me how i can do this. I tried different code but could not succeed.

 

<?php
$con=mysqli_connect("localhost","****","****","s4salman_color");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$url = $_GET['url'];

$sql="SELECT * FROM coloringpages where url = '$url' ORDER BY id";

if ($result=mysqli_query($con,$sql))
  {
  // Fetch one and one row
  while ($row=mysqli_fetch_row($result))
    {
    printf ("%s (%s)\n",$row[0],$row[5]);
    }
  // Free result set
  mysqli_free_result($result);
}

mysqli_close($con);
?>

 

Edited by Barand
Link to comment
https://forums.phpfreaks.com/topic/307347-image-print-help-in-php/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.