View Single Post
Old 01-19-2013, 12:30 PM   PM User | #7
tangoforce
Senior Coder

 
tangoforce's Avatar
 
Join Date: Feb 2011
Location: Your Monitor
Posts: 3,496
Thanks: 44
Thanked 439 Times in 428 Posts
tangoforce will become famous soon enoughtangoforce will become famous soon enough
Quote:
Originally Posted by budprime View Post
I am getting...
Code:
Parse error: syntax error, unexpected $end in /home/csufhous/public_html/bowenhost.com/index.php on line 52
And I am having a hard time finding the error. Can you help me out one last time?
Quote:
Originally Posted by Dormilich View Post
that error usually means that your closing braces } do not match the opening braces {.
As Dormilich says, you need to check out your braces. Use an editor such as Notepad++ which has line numbers so that you can actually find 52 without counting. Also see the link in my signature about codingstyles which will demonstrate how to deal with mismatched braces using notepad++.
__________________
Please wrap your code in [php] tags. It is a sticky topic and it HELPS us to HELP YOU!
TIP: Coding styles and $end errors :::::::::: TIP: Warning: Cannot modify header information - headers already sent :::::::::: TIP: Quotes / Parse error: syntax error, unexpected T_..
PHP Code:
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value. 
Explanation: The IE if(isset($_POST['submit'])) bug explained.
tangoforce is offline   Reply With Quote