We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moved here from BitBucket
<?php $sql_configure = "SELECT * FROM `productconfigurable` WHERE `productid` = '" . $_GET['id'] . "' and `act`='1' ORDER BY `sortorder` asc"; $result_configure = mysql_query($sql_configure); $count_configure = mysql_num_rows($result_configure); ?> <style> div.rectanglebox a.rectangle { background-color: #e6e6e6 !important; color: #000000 !important; } div.rectanglebox a.active { background-color: #12799a !important; color: #ffffff !important; } </style> <div class="modal-header"> <button class="close" data-dismiss="modal">X</button> <h3>Customize - <?= $info['name'] ?></h3> </div> Suppose I have code like this. Then it does not highlight syntax in style tag, as well as it stops html syntax highlighting after occurrence of <?=.
<?php $sql_configure = "SELECT * FROM `productconfigurable` WHERE `productid` = '" . $_GET['id'] . "' and `act`='1' ORDER BY `sortorder` asc"; $result_configure = mysql_query($sql_configure); $count_configure = mysql_num_rows($result_configure); ?> <style> div.rectanglebox a.rectangle { background-color: #e6e6e6 !important; color: #000000 !important; } div.rectanglebox a.active { background-color: #12799a !important; color: #ffffff !important; } </style> <div class="modal-header"> <button class="close" data-dismiss="modal">X</button> <h3>Customize - <?= $info['name'] ?></h3> </div>
Suppose I have code like this. Then it does not highlight syntax in style tag, as well as it stops html syntax highlighting after occurrence of <?=.
<?=
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Moved here from BitBucket
The text was updated successfully, but these errors were encountered: