Parse error: syntax error, unexpected T_STRING in PHP Programming Web Development by musfirah …gt; ************************* Current Oxygen : $oxygen Current Carbon Dioxside : $carbondioxside $smsalert="<br><br><br>…","password","+0134632858",$msgText); echo $smsalert; } /***EMAIL NOTIFICATION***/ function sendnotification($oxygenmin,$oxygenmax,$carbondioxsidemin,$carbondioxsidemax… Re: change message on form Programming Web Development by dips255 …;<font color=blue><input type='checkbox' name='smsalert' value='1' >Verify mobile number.</font>"… Re: Parse error: syntax error, unexpected T_STRING in PHP Programming Web Development by kekkaishi Make sure you properly mark the closing of a statement using semi-colons. In your code, for instance, the following statement needs closing. [CODE] $msgText="TISSUE CULTURE PARAMETER EXCEED!!!"; //add semi colon if this is the end of the statement. [/CODE] If the following lines are a part of this statement, then concatenate the … Re: Parse error: syntax error, unexpected T_STRING in PHP Programming Web Development by kekkaishi I just realised a terrible mistake in my explanation. To concatenate use '.' (dot without quotes) not '+'. I hope the earlier explanation did not confuse you since you already have concatenated a few strings. Cheers. Re: Parse error: syntax error, unexpected T_STRING in PHP Programming Web Development by anilashanbhag + also works ;