I HAVE A SCRIPT IN A ZIPPED FILE ON MY COMPUTER AND I WANT TO PUT IT ON MY WEBSITE HOW DO I DO THAT?

Question by :
i have a script in a zipped file on my personal and i want to put it on my website how do i do that?
i have never made a site before. i got my hosting and domain name free. i picked up some script for free and i want to put it on my website. how exactly do i do that. its in a zipped file right now.
——————————————
Answer by Kendall S
First, you need to unzip it by right clicking on the zipped files and selecting extract all. Then you need to upload to the server using an ftp program. I advocate FileZilla. If there is a page in the root directory (top folder) called index than that is the page that will open when you go to your website.
——————————————
What do you think? Answer below!









about 1 year ago
This is easy:
I tested this.
If you need more help I would be happy to answer just post!
Enjoy!
about 1 year ago
If the two inputted numbers are guaranteed not to be equal, you can do something like this.
var int_1 = Number( prompt( “Enter first number.”,”"));
var int_2 = Number( prompt( “Enter secod number.”,”"));
if( int_2 > int_1) {
int_1 ^= int_2;
int_2 ^= int_1;
int_1 ^= int_2;
}
alert( int_1 + ” is larger than ” + int_2 + “.”);
** Notes **
The part in the IF statement is a very old school method of swapping two variables using a NOR operator. This example requires that one number be larger than the other. If you need to test for equality then use this example.
var int_1 = Number( prompt( “Enter first number.”,”"));
var int_2 = Number( prompt( “Enter secod number.”,”"));
var descr = ” larger than “;
if( int_2 > int_1) {
int_1 ^= int_2;
int_2 ^= int_1;
int_1 ^= int_2;
} else if (int_1 == int_2) {
descr = ” equal to “;
}
alert( int_1 + ” is ” + descr + int_2 + “.”);
** More Notes **
You’ll notice that I encased the Prompts inside of Number(). Although not always required, it is good programming practice to explicitly cast a numeric value from a Prompt. A Prompt command returns a String value so you can’t perform any mathematical operations on the values it returns.
Remove the Number() from the above examples and try adding the two variables together.
alert( int_1 + int_2);
You’ll find that it only concatenates the two String values and does not add them together as you may have expected.
about 1 month ago
I agree, fileZilla is a life-saver (I use it, it saves TONS of time & effort when you’re uploading multiple files)
Basically you need to figure out what script is what before you upload it… if it’s a basic template for your site you should make copies of all the files in the zipped folder and “edit” areas to suit your site before uploading them…
If you want, you should take a basic HTML class or find a textbook about it… I took a web design class in high school & it was a MAJOR help.
(My next web design class is going to be in a few months, starting with XHTML, so I’m glad I already covered html, lol… doncha love college?)