Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Hi,
I want to upload an image ito database and display image in
a table in php
how it is possible

Answers were Sorted based on User's Feedback



Hi, I want to upload an image ito database and display image in a table in php how it is possible..

Answer / sarita

make a folder upload in ur directory and to the following
coding:::
if (($_FILES["file"]["type"] !== "image/jpeg") &&
($_FILES["file"]["type"] !== "jimage/peg") &&
($_FILES["file"]["type"] !== "image/png") &&
($_FILES["file"]["type"] !== "image/gif") &&
($_FILES["file"]["type"] !== "image/bmp"))
{
echo "<center><b><font color=#ff0000>Invalid file type,
please select an image with extension .jpg,.gif,.bmp
or.peg</font></b></center>";
}
else
{

move_uploaded_file($_FILES["file"]["tmp_name"],
"upload/" . $_FILES["file"]["name"]);

echo ""."Stored in: "."" . "upload/" .
$_FILES["file"]["name"]."<br>";

$imgname=$_FILES["file"]["name"];
$tmpname=$_FILES["file"]["tmp_name"] ;
$type=$_FILES["file"]["type"];
$size=$_FILES["file"]["size"];
$upload= "upload/" . $_FILES["file"]["name"];

$handle = fopen("$upload", "rb");
$img = fread($handle, filesize($upload));
fclose($handle);
//die($img);

$img = base64_encode($img);


$doe=$_POST['date'];
$result1=mysql_query("insert into tbl_album
values('','".$_POST['aname']."','','$type','$size','$imgname','$doe','".$_POST['shortdes']."','".$_POST['longdes']."')")
or die(mysql_error());


if($result1)
{
echo "<center><b><font color=#0099FF>Album added
Successfully</font></b></center>";
}








$ingname is saved in ur database and folder upload
successfull...u cn change the name of folder acc to u.

Is This Answer Correct ?    4 Yes 2 No

Hi, I want to upload an image ito database and display image in a table in php how it is possible..

Answer / grayn

First posted answer is given by like a
bharunwachod,madarchod.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More PHP Interview Questions

What is the use of get and post method in php?

0 Answers  


how to use particular city location in php?

1 Answers   TCS,


Whether site will complete the execution of the script if Fatal error occurs ?

1 Answers  


Explain about a search-friendly site looks like?

0 Answers  


What is isset php?

0 Answers  


How can you get web browser’s details using PHP?

0 Answers  


What is the exact Diff. between include_once() and require_once() in PHP?

12 Answers  


Write the code for upload a video file in PHP.How will You Play this in Your Page.?

2 Answers   ASD Lab, Convex Digital,


What is ci in php?

0 Answers  


What is the tags in PHP is not a valid way to begin and end a PHP code block?

0 Answers  


What is the difference between fopen() and fclose()?

0 Answers  


Is it necessary to use closing tag in php?sometime without closing tag things work.why?

2 Answers   ShopRite,


Categories