mattm1712 Posted September 24, 2010 Share Posted September 24, 2010 i want to put a mouse over in php tags <?php echo" <table> <TD onMouseOver="this.bgColor='#00CC00'" onMouseOut="this.bgColor='#009900'" bgColor=#009900><tr> "; ?> but i get confused with the " and ' where i should/shouldnt use them ................ Link to comment https://forums.phpfreaks.com/topic/214302-mouse-over-in-php/ Share on other sites More sharing options...
kickstart Posted September 24, 2010 Share Posted September 24, 2010 Hi Just escape the " within the echo statement to force them as " rather than ending the string. All the best Keith Link to comment https://forums.phpfreaks.com/topic/214302-mouse-over-in-php/#findComment-1115199 Share on other sites More sharing options...
Psycho Posted September 24, 2010 Share Posted September 24, 2010 You can't put double quotes within a string defined with double quotes - at least not without escaping them: <?php echo" <table> <TD onMouseOver=\"this.bgColor='#00CC00'\" onMouseOut=\"this.bgColor='#009900'\" bgColor=\"#009900\"><tr> "; ?> Link to comment https://forums.phpfreaks.com/topic/214302-mouse-over-in-php/#findComment-1115201 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.