Elusid Posted July 28, 2006 Share Posted July 28, 2006 Ok so I have this code bellow and I am wondering what is wrong with it to cause this errorParse 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 More sharing options...
Ninjakreborn Posted July 28, 2006 Share Posted July 28, 2006 [code]}} else { [/code] change that part to [code]}else {// whatever}[/code] Link to comment https://forums.phpfreaks.com/topic/15934-what-is-wrong-with-this-code/#findComment-65465 Share on other sites More sharing options...
Ninjakreborn Posted July 28, 2006 Share Posted July 28, 2006 [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 theif (whatever) {} always put the brackets. Your going to have to reformat the whole thing. Link to comment https://forums.phpfreaks.com/topic/15934-what-is-wrong-with-this-code/#findComment-65466 Share on other sites More sharing options...
Elusid Posted July 28, 2006 Author Share Posted July 28, 2006 [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 https://forums.phpfreaks.com/topic/15934-what-is-wrong-with-this-code/#findComment-65475 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.