And I try: All geek questions in one placeQuotations in html tag attribute problem value<?php $myname = 'my name have quotation marks " <- here'; ?> And I try:<input type="text" name="newnameproposition[<?php echo $myname ?>]"> And html have a little problem because:name="newnameproposition[my name have quotation marks " <- here]" Can anyone have such a problem?+3html php quotesMichal Feb 08 '11 at 10:21source share1 answerTake a look at htmlentities ()+4Aaron hathaway Feb 08 '11 at 10:23source shareSource: https://habr.com/ru/post/1790836/More articles:Why is the resources.getStringArray (int) exception an exception? - javaКак получить идентификатор пользователя Facebook во время деавторизации - facebook-c#-sdk.NET CMS with user authentication - authenticationThe advantage of using "specific" ORM: s in PHP? - phpChange background in iOS - iosIIS thinks webservice is Idle - multithreadinglog output control - erlangStrtolower function in php windows-1254 encoded - stringjQuery: add once and stop (worked in older versions) - jqueryHow can I add code reuse to my Selenium tests? - seleniumAll Articles
<?php $myname = 'my name have quotation marks " <- here'; ?>
And I try:
<input type="text" name="newnameproposition[<?php echo $myname ?>]">
And html have a little problem because:
name="newnameproposition[my name have quotation marks " <- here]"
Can anyone have such a problem?
Take a look at htmlentities ()
Source: https://habr.com/ru/post/1790836/More articles:Why is the resources.getStringArray (int) exception an exception? - javaКак получить идентификатор пользователя Facebook во время деавторизации - facebook-c#-sdk.NET CMS with user authentication - authenticationThe advantage of using "specific" ORM: s in PHP? - phpChange background in iOS - iosIIS thinks webservice is Idle - multithreadinglog output control - erlangStrtolower function in php windows-1254 encoded - stringjQuery: add once and stop (worked in older versions) - jqueryHow can I add code reuse to my Selenium tests? - seleniumAll Articles