Welcome Guest, Not a member yet? Register   Sign In
Get uploaded picture from mysql database
#2

[eluser]LuckyFella73[/eluser]
DB queries goes into models and echo image tags into views but
basically you can do your query like that:

Code:
$this->load->library->('database');
$this->db->select('file_path');
$query = $this->db->get('upload');

if ($query->num_rows() > 0)
{
$row = $query->row();
$path = $row->file_path;
}
echo "<img src='$path' height='250' width='250'>";


Messages In This Thread
Get uploaded picture from mysql database - by El Forum - 10-12-2012, 01:22 AM
Get uploaded picture from mysql database - by El Forum - 10-12-2012, 02:20 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 12:38 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:26 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:37 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:39 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:40 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:41 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:43 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:45 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:47 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:52 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:55 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:02 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:20 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:23 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:26 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 02:31 AM
Get uploaded picture from mysql database - by El Forum - 10-15-2012, 01:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB