Jump to content

What is wrong with this code?


Elusid

Recommended Posts

Ok so I have this code bellow and I am wondering what is wrong with it to cause this error


Parse error: parse error, unexpected '{' in /home/www/flamelicker.com/newsite/uploads/submit/appsubmission.php on line 20

[code]
<?php
$dir = 'pending/apps/' . date('l \\t\h\e jS \of F Y g:i:s a').'/';
mkdir($dir);


$file1 = $dir.basename($_FILES['snapshot']['name']);
if (move_uploaded_file($_FILES['snapshot']['tmp_name'], $file1))

$file2 = $dir.basename($_FILES['userfile']['name']);
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $file2))

$comments = $_POST['comments'];
$commentsfile = fopen($dir . 'comments.txt','a+');

 
     
          {if ((filesize($file1) <= 153600) && (filesize($file2) <= 26214400) &&

(fwrite($commentsfile,$comments))

{echo 'All your information has been uploaded successfully. One of our staff members will

look it over and if it passes our inspection, it will be on as soon as possible. Thank

you.';
}
} else
{
echo 'Something went wrong during the upload please go to our contact page and tell us

what happened.';
          unlink($file1);
          unlink($file2);
}

?>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/15934-what-is-wrong-with-this-code/
Share on other sites

[code]<?php
$dir = 'pending/apps/' . date('l \\t\h\e jS \of F Y g:i:s a').'/';
mkdir($dir);


$file1 = $dir.basename($_FILES['snapshot']['name']);
if (move_uploaded_file($_FILES['snapshot']['tmp_name'], $file1))

$file2 = $dir.basename($_FILES['userfile']['name']);
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $file2))

$comments = $_POST['comments'];
$commentsfile = fopen($dir . 'comments.txt','a+');

 
     
          {if ((filesize($file1) <= 153600) && (filesize($file2) <= 26214400) &&

(fwrite($commentsfile,$comments))

{echo 'All your information has been uploaded successfully. One of our staff members will

look it over and if it passes our inspection, it will be on as soon as possible. Thank

you.';
}
} else
{
echo 'Something went wrong during the upload please go to our contact page and tell us

what happened.';
          unlink($file1);
          unlink($file2);
}

?> [/code]
Your really screwing yourself over, ALWAYS put the
if (whatever) {
} always put the brackets.  Your going to have to reformat the whole thing.
[code]
<body bgcolor='000000' text='ffffff' link='880000' vlink='880000' alink='880000'>
<?php
$dir = 'pending/apps/' . date('l \\t\h\e jS \of F Y g:i:s a').'/';
mkdir($dir);


$file1 = $dir.basename($_FILES['snapshot']['name']);
$file2 = $dir.basename($_FILES['userfile']['name']);

$comments = $_POST['comments'];
$commentsfile = fopen($dir . 'comments.txt','a+');

if ((move_uploaded_file($_FILES['snapshot']['tmp_name'], $file1)) &&

($_FILES['userfile']['tmp_name'], $file2)))
 
      {
          if ((filesize($file1) <= 153600) && (filesize($file2) <= 26214400) &&

(fwrite($commentsfile,$comments)) {echo 'All your information has been uploaded

successfully. One of our staff members will look it over and if it passes our inspection,

it will be on as soon as possible. Thank you.';}
} else {
echo 'Something went wrong during the upload please go to our contact page and tell us

what happened.';
          unlink($file1);
          unlink($file2);
}

?>
</body>
[/code]

is that any better? I really am a noob at php and tried to combine scripts into one. I guess it didn't work out so welll hugh :P

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.