hi i am try to write this code $a='<table width="450" height="110" border="0"><tr><td width="150" height="105"><div align="center"><p><a href="http://www.mysite.com/video/'; ' echo $a; PHP: but i get this error Warning: Unexpected character in input: ''' (ASCII=39) state=1 in D:\Project\php-code.php on line 1 <a href= please give me advise how i can avoid this
You haven't closed the href value properly (missing ") : $a='<table width="450" height="110" border="0"><tr><td width="150" height="105"><div align="center"><p><a href="http://www.mysite.com/video/">LINK</a>'; echo $a; PHP: