go to: "C:\Users\YOU-USER-NAME\AppData\Local\Android\Sdk\tools\bin"
sdkmanager "platform-tools" "platforms;android-26"
as listed here: https://developer.android.com/studio/command-line/sdkmanager
All muhaza's note in developing website. Front-end & uiux method. Real life implementation for webdesigner.
sdkmanager "platform-tools" "platforms;android-26"
<!DOCTYPE html>
<html>
<body>
<script>
var gethttp = new XMLHttpRequest();
gethttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var load = JSON.parse(this.responseText);
//select from json
var x = load.nama;
var y = load.task;
// var y = load.pets[1].name;
//render and to html
document.querySelector("#nama").innerHTML = x;
document.querySelector("#alamat").innerHTML = y;
}
};
// gethttp.open("GET", "./numerologi/json.txt", true);
gethttp.open("GET", "seed/sprout", true);
gethttp.send();
</script>
<b id="nama"></b></br>
<b id="alamat"></b>
</body>
</html>
//htaccess for apacheincludes
folder out of the web-root, but if you want to block direct access to the whole includes
folder, you can put a .htaccess
file in that folder that contains just:deny from all
.htaccess
file.RewriteEngine on
# script to stop direct link of zip and css file
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example[NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example.*$ [NC]
RewriteRule \.(zip|css)$ http://www.example.com[R,L]
pipe(|)
symbol.(gif|zip|png|js|css|bmp)
<?php // Initialize variable for database credentials $dbhost = 'hostname'; $dbuser = 'username'; $dbpass = 'password'; $dbname = 'sakila'; //Create database connection $dblink = new mysqli($dbhost, $dbuser, $dbpass, $dbname); //Check connection was successful if ($dblink->connect_errno) { printf("Failed to connect to database"); exit(); } //Fetch 3 rows from actor table $result = $dblink->query("SELECT * FROM actor LIMIT 3"); //Initialize array variable $dbdata = array(); //Fetch into associative array while ( $row = $result->fetch_assoc()) { $dbdata[]=$row; } //Print array in JSON format echo json_encode($dbdata); ?>
[ { "actor_id":"1", "first_name":"PENELOPE", "last_name":"GUINESS", "last_update":"2006-02-15 04:34:33" }, { "actor_id":"2", "first_name":"NICK", "last_name":"WAHLBERG", "last_update":"2006-02-15 04:34:33" }, { "actor_id":"3", "first_name":"ED", "last_name":"CHASE", "last_update":"2006-02-15 04:34:33" } ]
<script>
function analyzeColor3(myColor) {
if (myColor == "Blue") {
alert("Just like the sky!");
}
else if (myColor == "Red") {
alert("Just like shiraz!");
}
else {
alert("Suit yourself then...");
}
}
</script>
<h3>Favorite Color</h3>
<label>
<input type="radio" name="fav_color3" value="Blue" onclick="analyzeColor3(this.value);"> Blue
</label>
<label>
<input type="radio" name="fav_color3" value="Red" onclick="analyzeColor3(this.value);"> Red
</label>
<label>
<input type="radio" name="fav_color3" value="Green" onclick="analyzeColor3(this.value);"> Green
</label>
<label>
<input type="radio" name="fav_color3" value="None" onclick="analyzeColor3(this.value);"> None
</label>
Degree Level | Associate degree; bachelor's preferred |
Degree Field(s) | Computer technology, website design, graphic design |
License/Certification | Certificates available |
Experience | Professional portfolio |
Key Skills | Computer programming and graphic design; computer proficiency; ability to work on a team |
Job Outlook (2014-2024) | 27% growth |
Median Annual Salary (2015) | $64,970 (for web developers) |
jQuery("#btn").on('click', function() {
var $txt = jQuery("#txt");
var caretPos = $txt[0].selectionStart;
var textAreaTxt = $txt.val();
var txtToAdd = "stuff";
$txt.val(textAreaTxt.substring(0, caretPos) + txtToAdd + textAreaTxt.substring(caretPos) );
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<textarea id="txt" rows="15" cols="70">There is some text here.</textarea>
<input type="button" id="btn" value="OK" />
rssing.com