Skip to content

Instantly share code, notes, and snippets.

@WakkyFree
Created July 21, 2021 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WakkyFree/41764a99f2aeaf74977c16255ca16d16 to your computer and use it in GitHub Desktop.
Save WakkyFree/41764a99f2aeaf74977c16255ca16d16 to your computer and use it in GitHub Desktop.
html to read spreadsheet
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<h1>スプレッドシート読み込みテスト</h1>
<p>スプレッドシートから読み込んだ内容を表示↓</p>
<?
var data = readSheet();
for(var i=0;i<data.length;i++){
output._ = '<p>' + data[i][0] + '</p>';
}
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment