table: student_group
+-------------+-----------+
| student_id | group_id |
+-------------+-----------+
| 1 | 4 |
+-------------+-----------+
| 1 | 5 |
+-------------+-----------+
| 1 | 10 |
+-------------+-----------+
| 1 | 99 |
+-------------+-----------+
| 2 | 8 |
+-------------+-----------+
| 2 | 30 |
+-------------+-----------+
bg {
background-color: rgba(249, 201, 16, 1);
}
bg:hover {
background-color: rgba(249, 201, 16, 0.5);
}
.woocommerce a.add_to_cart_button.button:before, .woocommerce a.product_type_variable.button:before, .woocommerce a.product_type_grouped.button:before, .woocommerce a.product_type_simple.button:before, .woocommerce div.product form.cart button.single_add_to_cart_button:before { content: "\f07a"; cursor: pointer; /* font-family: FontAwesome; */ font-size: 13px; font-style: normal; font-weight: normal; line-height: 1; padding-right: 4px; position: relative; text-shadow: none; -webkit-font-smoothing: antialiased; color:inherit; speak: none; }
.woocommerce div.product form.cart button.single_add_to_cart_button:before
<div class="search-form">
<form method="post">
<input id="search" name="" value="" placeholder="Поиск" required="" type="search" autocomplete="off">
</form>
</div>
<form id="myForm" method="get">
<input type="text" name="name" value="Ваше имя">
<input id="send" type="submit" name="send" value="Отправить">
</form>
$( "#btn-yes" ).click(function() {
$( "#myForm" ).submit();
});
var i = 1;
$('#left').click(
function() {
if(i<2) {
i = 4;
} else {
i--;
}
alert(i);
}
);
$('#right').click(
function() {
if(i>3) {
i = 1;
} else {
i++;
}
alert(i);
}
);
array = null;
[a-zA-Z0-9-]
/{[ \t]*foreach[ \t]*\$_*[A-Za-z]+[A-Za-z0-9_]*[ \t]*as[ \t]*\$_*[A-Za-z]+[A-Za-z0-9_]*(?:[ \t]=>[ \t]*\$_*[A-Za-z]+[A-Za-z0-9_]*)?[ \t]*}.*{[ \t]*\/foreach[ \t]*}/gi
<?php
$num = file_get_contents('https://blockchain.info/tobtc?'.http_build_query($_GET));
echo $num;
(function($){
$(document).ready(function() {
$.ajax({
type: "GET",
url: "http://localhost/cross.php?currency=USD&value=100",
dataType : 'text',
success: function(html) {
alert(html);
}
});
});
})(jQuery);