Quick key: Ctrl+Alt+H
Preferences -> Panels -> Show hidden files
Then . file can be viewed. Some file like .htaccess will visible.
SELECT * FROM (
SELECT *
FROM table
) WHERE ROWNUM < 101
In MySQL:SELECT *
FROM
table
LIMIT 100
In SQL Sever/ MS Access:SELECT TOP 100
*
FROM
table
@echo OFF
cd jarFilePath
java -jar fileName.jar
Then change .txt to .bat, double-click it.<div style="display: none;">
<form action="upload.php" method="post" enctype="multipart/form-data" id="form">
<input type="file" name="file" id="file">
</form>
</div>
<div id="dropArea" style="height:25px">drop image here</div>
JS:
$("#dropArea").on("drop dragover", function(e) {
var fm = document.getElementById('form');
var fd = new FormData(fm);
imageUpload(fd);
});
function imageUpload(fd) {
$.ajax({
async: true,
type: 'post',
url: 'upload.php',
data: fd,
contentType: false,
processData: false,
timeout: 120000,
success: function(data) {
},
error: function(R, S, E){}
});
}
' check if folder exist
If Dir("folder path", vbDirectory) = "" Then
' if not exist, create
MkDir "folder path"
End If