Jump to content

Images


iamali

Recommended Posts

Does anyone know what would cause images not to load? I'm displaying images after I upload them using this code:

<a href="<?php echo $_FILES['file']['name']; ?>"><img src="<?php echo $_FILES['file']['name']; ?>" height="200"></a>

but it's not working!
Anyone?!
Link to comment
Share on other sites

[!--quoteo(post=351004:date=Mar 2 2006, 04:28 PM:name=shocker-z)--][div class=\'quotetop\']QUOTE(shocker-z @ Mar 2 2006, 04:28 PM) [snapback]351004[/snapback][/div][div class=\'quotemain\'][!--quotec--]
is your form like..

<form name="form1" enctype="multipart/form-data" method="post" action="">
Are you sure u have enctype="multipart/form-data" in the form eliment? maby post full code?
[/quote]

yeah, my form is:

<html><head><title>File Uploader</title></head>
<body><h3>File Upload</h3>
Select a file to upload:<br>
<form action="uploader.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" size="45">
<br>
<input type="submit" value="Upload File">
</form>
</body></html>

and the uploading script is:

<?php
if( $_FILES['file']['name'] != "" )
{
copy ( $_FILES['file']['tmp_name'],
"C:/Inetpub/wwwroot/Upload/" . $_FILES['file']['name'] )
or die( "Could not copy file" );
}
else{ die( "No file specified" ); }
?>

<html>
<head><title>Upload Complete</title></head>
<body>
<h3>File Upload Succeeded...</h3>

<ul>
<li>Sent: <?php echo $_FILES['file']['name']; ?>
<li>Size: <?php echo $_FILES['file']['size']; ?> bytes
<li>Type: <?php echo $_FILES['file']['type']; ?>
</ul>

<a href="<?php echo $_FILES['file']['name']; ?>"><img src="<?php echo

$_FILES['file']['name']; ?>" height="200"></a>

</body>
</html>

:-)
Link to comment
Share on other sites

[code]<html><head><title>File Uploader</title></head>
<body><h3>File Upload</h3>
Select a file to upload:<br>
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="file" size="45">
<br>
<input type="submit" value="Upload File">
</form>
</body></html>

and the uploading script is:

<?php
if( $_FILES['file']['name'] != "" )
{
copy ( $_FILES['file']['tmp_name'],
"/var/www/stuff/" . $_FILES['file']['name'] )
or die( "Could not copy file" );
}
else{ die( "No file specified" ); }
?>

<html>
<head><title>Upload Complete</title></head>
<body>
<h3>File Upload Succeeded...</h3>

<ul>
<li>Sent: <?php echo $_FILES['file']['name']; ?>
<li>Size: <?php echo $_FILES['file']['size']; ?> bytes
<li>Type: <?php echo $_FILES['file']['type']; ?>
</ul>

<a href="<?php echo "http://www.blucode.net/stuff/".$_FILES['file']['name']; ?>"><img src="<?php echo "http://www.blucode.net/stuff/".$_FILES['file']['name']; ?>" height="200"></a>

</body>
</html>
[/code]

that works for me.. [a href=\"http://www.blucode.net/phpfreaks.php\" target=\"_blank\"]http://www.blucode.net/phpfreaks.php[/a] was u running your page in the folder "Upload" ??
Link to comment
Share on other sites

[!--quoteo(post=351018:date=Mar 2 2006, 04:56 PM:name=shocker-z)--][div class=\'quotetop\']QUOTE(shocker-z @ Mar 2 2006, 04:56 PM) [snapback]351018[/snapback][/div][div class=\'quotemain\'][!--quotec--]

that works for me.. [a href=\"http://www.blucode.net/phpfreaks.php\" target=\"_blank\"]http://www.blucode.net/phpfreaks.php[/a] was u running your page in the folder "Upload" ??
[/quote]

yeah, it's in the folder upload. wondering whether it's something to do with my setup of PHP but i'd have no idea what it would be :-S
Link to comment
Share on other sites

[!--quoteo(post=351018:date=Mar 2 2006, 04:56 PM:name=shocker-z)--][div class=\'quotetop\']QUOTE(shocker-z @ Mar 2 2006, 04:56 PM) [snapback]351018[/snapback][/div][div class=\'quotemain\'][!--quotec--]
that works for me.. [a href=\"http://www.blucode.net/phpfreaks.php\" target=\"_blank\"]http://www.blucode.net/phpfreaks.php[/a] was u running your page in the folder "Upload" ??
[/quote]

ooh i got the images to to show up with:

<?php
if( $_FILES['file']['name'] != "" )
{
copy ( $_FILES['file']['tmp_name'],
"C:Inetpub/wwwroot/Upload/" . $_FILES['file']['name'] )
or die( "Could not copy file" );
}
else{ die( "No file specified" ); }
?>

<html>
<head><title>Upload Complete</title></head>
<body>
<h3>File Upload Succeeded...</h3>

<ul>
<li>Sent: <?php echo $_FILES['file']['name']; ?>
<li>Size: <?php echo $_FILES['file']['size']; ?> bytes
<li>Type: <?php echo $_FILES['file']['type']; ?>
</ul>

<a href="<?php echo "C:/Inetpub/wwwroot/Upload/".$_FILES['file']['name']; ?>"><img

src="<?php echo "C:/Inetpub/wwwroot/Upload/".$_FILES['file']['name']; ?>"

height="200"></a>

</body>
</html>

!!!
but the <a href part seems to link to file:///C:/Inetpub/wwwroot/Upload/filename.gif for some reason...
Link to comment
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.