streams/mod/xchan.php

43 lines
976 B
PHP
Raw Normal View History

<?php
function xchan_content(&$a) {
$o .= '<h3>Xchan Lookup</h3>';
$o .= '<form action="xchan" method="get">';
$o .= 'Lookup xchan beginning with (or webbie): <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
$o .= '<br /><br />';
if(x($_GET,'addr')) {
$addr = trim($_GET['addr']);
2014-02-06 02:51:50 +00:00
$r = q("select * from xchan where xchan_hash like '%s%%' or xchan_addr = '%s' group by xchan_hash",
dbesc($addr),
2014-02-06 02:51:50 +00:00
dbesc($addr)
);
2014-02-06 02:51:50 +00:00
if($r) {
foreach($r as $rr) {
2014-09-18 02:14:23 +00:00
$o .= str_replace(array("\n"," "),array("<br/>","&nbsp;"),print_r($rr,true)) . EOL;
2014-09-12 21:23:42 +00:00
$s = q("select * from hubloc where hubloc_hash like '%s'",
dbesc($r[0]['xchan_hash'])
);
2014-09-12 21:23:42 +00:00
if($s) {
foreach($s as $rr)
2014-09-18 02:14:23 +00:00
$o .= str_replace(array("\n"," "),array("<br/>","&nbsp;"),print_r($rr,true)) . EOL;
}
}
2014-09-12 21:23:42 +00:00
}
else
notice( t('Not found.') . EOL);
2014-09-12 21:23:42 +00:00
}
return $o;
}