2013年11月14日 星期四
php 使用 fsockopen 取回需登入的網站資料
<?php
$yoursite ="http://website.com"
$name = "name";
$password = "password";
$string=base64_encode($name.":".$password);
$head="GET / HTTP/1.0\r\n\r\n";
$head.="Accept: text/html\r\n";
$head.="Authorization: Basic $string\r\n\r\n";
$fp =fsockopen($yoursite, 80, $errno, $errstr, 30);
if (!$fp) {echo "$errstr ($errno)";
}
else
{
fwrite ($fp, $head);
while (!feof($fp)) echo fgets ($fp,128);
}
fclose ($fp);
?>
2013年11月13日 星期三
2013年11月12日 星期二
jQuery 檢查特定一個單選框, 是否有被點選
Html Code
<input id=name1 type=radio>
<input id=name1 type=radio>
JS Code
if ( $("input[type='radio']").get(1).checked ){
console.log="checked";
}
2013年11月11日 星期一
訂閱:
文章 (Atom)