Skip to content

Instantly share code, notes, and snippets.

@Techmind
Techmind / gist:3958454
Created October 26, 2012 12:14
demo google play parser
<?php
$content = file_get_contents('https://play.google.com/store');
var_dump(strlen($content));
preg_match_all("~<a href=\"(/store/apps/category/[A-Z_]*)~", $content, $matches);
$cats = array_unique($matches[1]);
@pafnuty
pafnuty / selects.html
Created January 28, 2013 05:56
Селекты с переходом по ссылке в атрибуте value
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Селекты</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script>
jQuery(document).ready(function($) {
$('.sorting-data').on('change', function () {
if($(this).val() != '' || $(this).val() != 'undefined') {