Hi there
This is my problem:

- Upload image (not important)
- Store its in [filename].php
- Show [filename].php like image.jpg in show.php (gallery)

Can you solve? Thank you so much

Recommended Answers

All 8 Replies

Member Avatar for diafol

show us your code so far.

<?php
	
	
$files = glob("output/*.*");	
for ($i=0; $i<count($files); $i++)
{	
	$num = $files[$i];
	echo '<img style="display: inline;" alt="" class="" id="" rel="" src="'.htmlspecialchars($num).'" alt="random image" />';	
}


?>

I just know display image, sorry, I'm beginner

Member Avatar for diafol

Have you looked at the php.net manual: move_uploaded_file()?

can you explain a little bit?

thank for your help!

can you help me any more?

in my problem, i have some image in Image Folder, i want display it as link.

For example: in webpage, images display of course, but when i save web, root folder saved. How does web saved, but image not saved, and display as just link.

form.php

<html>
<body>

<form action="uploader.php" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" /> 
<br />
<input type="submit" name="submit" value="Submit" />
</form>

</body>
</html>

uploader.php

<?php
echo "Party Symbol<br/>";
if($_FILES["file"]["name"])
  {
  echo $_FILES["file"]["name"];
  echo $_FILES["file"]["tmp_name"];
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "./images/" . $_FILES["file"]["name"]);
         echo "<img src='"."./images/" . $_FILES["file"]["name"]."' width='500px' height='500px' border='2'>";
      //now open database connection and save tha path ./images/$_FILES["file"]["name"]
 


   }

?>

Hope it will solve your problem.
PS-If Your problem is solved mark the thread as solved...

thank you so much

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.