php - <a> doesn't wrap span, and appears as text -


i've used <a></a> tag inside php file. looks so:

<а href="https://play.google.com/store/apps/details?id=org.imperialhero.android">     <span class="qr-wrapper"></span> </a> 

however, when rendered html on page, span within displayed (and outside of anchor element), while anchor "seen" text , displayed so.

enter image description here

why link interpreted text? , why closing </a> missing?

your anchor tag seems not "a", different symbol looks a. not sure though. replace should work.

<a href="https://play.google.com/store/apps/details?id=org.imperialhero.android">     <span class="qr-wrapper"></span> </a> 

in comparision, yours:

<а href="https://play.google.com/store/apps/details?id=org.imperialhero.android">     <span class="qr-wrapper"></span> </a> 

Comments

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -