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
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.
Link to comment
Share on other sites

[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
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.