On 7/14/07, Luc <luc@xxxxxxxxxxx> wrote:
Hello Tijnema, Friday, July 13, 2007, 10:09:05 PM, you wrote: > You're using a ' here, which ends the string. Use one of these: > $websitetitle = "John Doe's Site"; > OR > $websitetitle = 'John Doe\'s Site'; > Just a matter of preference ;) Thanks Tijnema But still get: Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /.... on line 14 So i still don't have a clue what i could have snipped and if i have everything in the correct order. -- Best regards, Luc
You must have some unclosed single quote ( ' ) somewhere, on one of these lines probably: $youremail = $websitetitle = $thankyoupage = For test, leave all of them empty and see if the error is still popping up, if not, fill them back in one by one and see which one causes the error, OR Use a IDE (like Adobe Dreamweaver), and with the color coding you'll see directly where the fault is :) Tijnema ps. This is my last reply for today, as it is 3:45 AM here ;) Just try some things... -- Vote for PHP Color Coding in Gmail! -> http://gpcc.tijnema.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php