must setting
in html
in php
in mysql
@charset "UTF-8"; | |
/* CSS Document */ | |
/* | |
Copyright (c) 2008, Yahoo! Inc. All rights reserved. | |
Code licensed under the BSD License: | |
http://developer.yahoo.net/yui/license.txt | |
version: 2.6.0 | |
*/ | |
/** |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.example.jtec.test_install" > | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | |
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
package com.example.jtec.html_play; | |
import android.app.AlertDialog; | |
import android.content.Context; | |
import android.content.DialogInterface; | |
import android.media.AudioManager; | |
import android.media.MediaPlayer; | |
import android.os.PowerManager; | |
import android.os.StrictMode; | |
import android.support.v7.app.AppCompatActivity; |
html { | |
font-family: sans-serif; | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
} | |
body { | |
margin: 0; | |
} | |
article, |
/** @license | |
* http://www.schillmania.com/projects/soundmanager2/script/soundmanager2.js | |
* SoundManager 2: JavaScript Sound for the Web | |
* ---------------------------------------------- | |
* http://schillmania.com/projects/soundmanager2/ | |
* | |
* Copyright (c) 2007, Scott Schiller. All rights reserved. | |
* Code provided under the BSD License: | |
* http://schillmania.com/projects/soundmanager2/license.txt | |
* |
/** @license | |
* | |
* SoundManager 2: JavaScript Sound for the Web | |
* ---------------------------------------------- | |
* http://schillmania.com/projects/soundmanager2/ | |
* | |
* Copyright (c) 2007, Scott Schiller. All rights reserved. | |
* Code provided under the BSD License: | |
* http://schillmania.com/projects/soundmanager2/license.txt | |
* |
<!DOCTYPE html> | |
<html> | |
<body> | |
Input:   <input type="text" id="myText1" value="209100"><br> | |
Output_: <input type="text" id="myText2" value="null"><br> | |
<br> | |
<button id="demo1" onclick="myFunction()">Show exe</button> | |
<p id="demo"></p> |
<head> | |
<script type="text/javascript" src="test.js"></script> | |
<a href="javascript:loadjscssfile('myscript.js','js')">Load "myscript.js"</a> | |
<a href="javascript:loadjscssfile('mystyle.css','css')">Load "mystyle.css"</a> | |
<div class="demotable" style="background:red;">fsa</div> | |
<a href="javascript:test()">function test</a> | |
<div id="content"></div> | |
</head> |
function get_single_template() { | |
$object = get_queried_object(); | |
$templates = array(); | |
if ( ! empty( $object->post_type ) ) | |
$templates[] = "single-{$object->post_type}.php"; | |
// $templates[] = "single.php"; | |
$the_categories = get_the_category(); |