|
|
<!-- ピンポイント タイトル部分 -->
<SPAN class="li">
<IMG
src="http://winofsql.jp/image/p.png"
onClick='TreeControl("501", this)'
>
ピンポイント
</SPAN><br>
<DIV class="ul" style='display:none;' id="501">
<!-- 明細の埋め込み -->
<SCRIPT
language="javascript"
type="text/javascript"
src="http://winofsql.jp/argus/tree/pinpoint.js"
></SCRIPT>
</DIV>
| |
|
|
|
|
document.write( '<SPAN class="li">' );
document.write( '<IMG src="http://winofsql.jp/image/d2.png">' );
document.write( "<A href='javascript:HideView2(\"" );
document.write( "http://winofsql.jp/VA003334/smalltech060519170330.htm\",3000)'>" );
document.write( 'C++ MySQL アクセス' );
document.write( '</A>' );
document.write( '</SPAN>' );
document.write( '<br />' );
document.write( '<SPAN class="li">' );
document.write( '<IMG src="http://winofsql.jp/image/d2.png">' );
document.write( "<A href='javascript:HideView2(\"" );
document.write( "http://winofsql.jp/VA003334/smalltech060519171448.htm\",4500)'>" );
document.write( 'C++ ADO' );
document.write( '</A>' );
document.write( '</SPAN>' );
document.write( '<br />' );
| |
|
|
|
|
<!-- ピンポイント タイトル部分 -->
<SPAN class="li">
<IMG
src="http://winofsql.jp/image/p.png"
onClick='TreeControl("501", this)'
>
ピンポイント
</SPAN><br>
<DIV class="ul" style='display:none;' id="501">
<!-- 明細の埋め込み -->
<SCRIPT
language="javascript"
type="text/javascript"
src="http://winofsql.jp/argus/tree/pinpoint.php"
></SCRIPT>
</DIV>
| |
|
pinpoint.php
|
<?
header( "Content-Type: text/javascript; Charset=shift_jis" );
?>
document.write( '<SPAN class="li">' );
document.write( '<IMG src="http://winofsql.jp/image/d2.png">' );
document.write( "<A href='javascript:HideView2(\"" );
document.write( "http://winofsql.jp/VA003334/smalltech060519170330.htm\",3000)'>" );
document.write( 'C++ MySQL アクセス' );
document.write( '</A>' );
document.write( '</SPAN>' );
document.write( '<br />' );
document.write( '<SPAN class="li">' );
document.write( '<IMG src="http://winofsql.jp/image/d2.png">' );
document.write( "<A href='javascript:HideView2(\"" );
document.write( "http://winofsql.jp/VA003334/smalltech060519171448.htm\",4500)'>" );
document.write( 'C++ ADO' );
document.write( '</A>' );
document.write( '</SPAN>' );
document.write( '<br />' );
| |
|
|
|
|
create table `MYLINKS` (
`AUTOID` BIGINT NOT NULL AUTO_INCREMENT UNIQUE
,`CATEGORY` VARCHAR(20)
,`TITLE` VARCHAR(255)
,`UTL` VARCHAR(255)
,`OPTION` VARCHAR(255)
,`SORT` INT
,primary key( AUTOID )
)
| |
|
|
create index `MYLINKS_SORT` on `MYLINKS`( `SORT` )
| |
|
|
insert into `MYLINKS` (
`CATEGORY`
,`TITLE`
,`UTL`
,`OPTION`
,`SORT`
)
values(
'pinpoint'
,'C++ MySQL アクセス'
,'http://winofsql.jp/VA003334/smalltech060519170330.htm'
,'3000'
,1
)
| |
|
|
insert into `MYLINKS` (
`CATEGORY`
,`TITLE`
,`UTL`
,`OPTION`
,`SORT`
)
values(
'pinpoint'
,'C++ ADO'
,'http://winofsql.jp/VA003334/smalltech060519171448.htm'
,'4500'
,2
)
| |
|
|
|
|
<?
header( "Content-Type: text/javascript; Charset=shift_jis" );
$host = "localhost"; // データベースのあるサーバー
$db = "lightbox"; // データベース名
$user = "root"; // ユーザー名
$pass = ""; // パスワード
mb_language( "ja" );
mb_internal_encoding("EUC-JP");
// 接続とDB選択
$link = mysql_connect($host, $user, $pass);
if ( !$link ) {
print mystr( "接続エラー" );
exit();
}
mysql_select_db( $db, $link );
// SQL の指定
$sql = "select * from `MYLINKS`";
$sql .= " where `CATEGORY` = '{$_GET['target']}'";
$sql .= " order by `SORT`";
$result = mysql_query($sql);
if (!$result) {
print "SQLエラー<br>";
print mysql_error();
exit();
}
// 一覧作成
while ($row = mysql_fetch_row($result)) {
?>
document.write( '<SPAN class="li">' );
document.write( '<IMG src="http://winofsql.jp/image/d2.png">' );
document.write( "<A href='javascript:HideView2(\"" );
<?
print "document.write( \"";
print $row[3];
print "\\\",";
print $row[4];
print ")'>\" );\n";
print "document.write( '";
print mb_convert_encoding( $row[2], "SJIS", "EUC-JP" );
print "' );\n";
?>
document.write( '</A>' );
document.write( '</SPAN>' );
document.write( '<br />' );
<?
}
mysql_free_result($result);
// 接続解除
mysql_close($link);
?>
| |
|
|
埋め込み SCRIPT タグの src 属性の変更 |
|
|
<!-- ピンポイント タイトル部分 -->
<SPAN class="li">
<IMG
src="http://winofsql.jp/image/p.png"
onClick='TreeControl("501", this)'
>
ピンポイント
</SPAN><br>
<DIV class="ul" style='display:none;' id="501">
<!-- 明細の埋め込み -->
<SCRIPT
language="javascript"
type="text/javascript"
src="http://winofsql.jp/argus/tree/pinpoint.php?target=pinpoint"
></SCRIPT>
</DIV>
| |
|
|
|
|
<?
header( "Content-Type: text/javascript; Charset=shift_jis" );
# リファラチェックのはじまり
$mydomain = "http://argus.sblo.jp";
$len = strlen( $mydomain );
$ref = substr( $_SERVER['HTTP_REFERER'], 0, $len );
if ( $mydomain != $ref ) {
print "document.write( \"argus.sblo.jp 以外では使用できません\" );";
exit();
}
# リファラチェックのおわり
$host = "localhost"; // データベースのあるサーバー
$db = "lightbox"; // データベース名
$user = "root"; // ユーザー名
$pass = ""; // パスワード
| |
|
|
|