Advertising
advertising
related pastes to tag 'basic'
- 1582822 - Thewerype apache2 basic authentication
- preview unavailable
- 1291894 - ScriptHelper: lua command guide basic
-
- --Scripting LUA help.
- --This is a general trouble shooting command, if you place it in the correct part in your LUA script and have
- output open, it will let you know when something isn't working. The text in the quotes can be changed. It is
- not required, though. Editing the script beyond the quote area may cause the script not to work. Here is the
- basic command.
- --SCRIPT BELOW
- print("Your script is not working correctly.")
- 1291891 - ScriptHelper: help scripts programming basic website
-
- --Basic Website Script help.
- Here are some basic website scripts. They are very useful to know when you are programming your own website.
- <img src="IMAGELINKHERE"> --This script will add an image to your site. Of course, IMAGELINKHERE is not an actual web link,
- and therefore it must be changed. Keep everything the same INCLUDING THE QUOTES (I cannot stress enough how important the
- quotes are!) except the text IMAGELINKHERE. That needs to be replaced with the actual link of the picture you want to upload
- to your site. If you have your image on an image upload site, copy the link in the section DIRECT LINK or whichever one
- that will work when the link is put into the code. With uploading sites that give multiple links, you may have to experiment
- 695067 - Area calculator: calculator programming basic area true
-
- PRINT "Please enter the length of the rectangle."
- INPUT L
- !Variable L stands for the length of the rectangle.
- CLEAR
- PRINT "Please enter the width of the rectangle."
- INPUT W
- !Variable W stands for the width of the rectangle.
- CLEAR