Jump to content

Hi a bit of PHP help needed.


rofl90

Recommended Posts

When i select the file then upload it, it doesn't do anything apart from load for say 40 seconds, then it says it uploaded, but it doesn't upload it, the file is set in a subdir called jsellenraad, and the file to be uploaded is supposed to go to /jsellenraad/images

Link to comment
Share on other sites

What I have so far <?php

<?php
/**
* @Courtesy of php-mysql-tutorial.com
* @copyright 2007
*/
include config.php
if(isset($_POST['upload']) && $_FILES['userfile']['size'] > 0)
{
$fileName = $_FILES['userfile']['name'];
$tmpName  = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];

$fp      = fopen($tmpName, 'r');
$content = fread($fp, filesize($tmpName));
$content = addslashes($content);
fclose($fp);

if(!get_magic_quotes_gpc())
{
    $fileName = addslashes($fileName);
}

$query = "INSERT INTO upload (name, size, type, content ) ".
"VALUES ('$fileName', '$fileSize', '$fileType', '$content')";

mysql_query($query) or die('Error, query failed');

echo "<br>File $fileName uploaded<br>";
}
?>
<form method="post" enctype="multipart/form-data">
<table width="350" border="0" cellpadding="1" cellspacing="1" class="box">
<tr>
<td width="246">
<input type="hidden" name="MAX_FILE_SIZE" value="9999999999">
<input name="userfile" type="file" id="userfile">
</td>
<td width="80"><input name="upload" type="submit" class="box" id="upload" value=" Upload "></td>
</tr>
</table>
</form>

is this ok?

Link to comment
Share on other sites

sorry didnt include first part

this is from 1 to like 21:

 

<center>Welcome back, Johan, to upload a new painting, press 'Browse...', then  navigate to the picture file you wish to add, then click 'Open/OK/Accept' on the navigational window, then press 'Submit Query'.</center>


<?php

/**
* @Courtesy of php-mysql-tutorial.com
* @copyright 2007
*/
include config.php
if(isset($_POST['upload']) && $_FILES['userfile']['size'] > 0) // LINE 11 ERROR
{
$fileName = $_FILES['userfile']['name'];
$tmpName  = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];

$fp      = fopen($tmpName, 'r');
$content = fread($fp, filesize($tmpName));
$content = addslashes($content);
fclose($fp);

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.