- Be the change you want to see in the web: The Web We Want
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html public "✰"> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>getUserMedia Video Example</title> | |
</head> | |
<body> | |
<button type="button" onclick="toggle()"> | |
Toggle Video | |
</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$yql_url = 'http://query.yahooapis.com/v1/public/yql?'; | |
$query = 'SELECT * FROM flickr.photos.search WHERE has_geo="true" AND text="san francisco"'; | |
$query_url = $yql_url . 'q=' . urlencode($query) . '&format=xml'; | |
$photos = simplexml_load_file($query_url); | |
$result = build_photos($photos->results->photo); | |
echo $result; | |
function build_photos($photos){ |