web development help

sash1

Diamond Member
Jul 20, 2001
8,896
1
0
http://www.k3mfx.com/x3/index.htm

What would you use to make those cool popdowns or whatever they are called (I dunno)?

Also, I hear a lot about PHP, XML, ASP, and all this other stuff. As of now, I only know HTML (My website). I still need to learn this javascript stuff and I want to learn what those other things I mentioned were. HTML goodies had a few little things on them....

Looking for websites or maybe point me out to some good books (I don't have a Barnes and Noble around here: only a Borders and a few others).

Thanks,

~Aunix

Edit-
Oh yeah, how about making flash sites. My buddy Tim made one: here. He said he just read through the tutorials and got it. But are there some better stuff than that to teach me?

Second edit-
Wow I forget a lot. Okay, on the top bar you'll see "customize your own computer" (or something like that). Well, want I want to do is something like they choose their parts, it gives them a price, and then they can e-mail that to us so we can see what they want. Only problem, I have no clue how to do this. Here is what I have:

<html>

<form name="PARTS">
<input type="text" name="PRICE" size="5" value="">




<input type="button" value="Pentium 4 2.2GHz" onClick="PRICE.value='527'">


<input type="button" value="Athlon XP 2100+" onClick="PRICE.value='299'">
</form>

</body>
</html>

So, now what? LOL! I got this from one of my friends and I know how its working. But I need to make it so they can choose a processor, video card, mobo, etc. I'm so lost! HELP!
 

sash1

Diamond Member
Jul 20, 2001
8,896
1
0
revised:

<html>

<form name="PARTS">
<input type="text" name="PRICE" size="5" value="">
<br.>
<br.>
<input type="button" value="Pentium 4 2.2GHz" onClick="PRICE.value='527'">
<br.>
<input type="button" value="Athlon XP 2100+" onClick="PRICE.value='299'">
</form>

</body>
</html>

take out the "." after the "br"

in my first post it actually made line breaks
 

sash1

Diamond Member
Jul 20, 2001
8,896
1
0
those collapsable menus on webmonkey. I can sorta see how it works, its just I don't know how I could get it to work on my page: aunixm3.tripod.com

Thanks a lot!

~Aunix
 

sash1

Diamond Member
Jul 20, 2001
8,896
1
0
<html>

<form name="PARTS">
<input type="text" name="PRICE" size="5" value="">    +     <input type="text" name="PRICE1" size="5" value="">    +     <input type="text" name="PRICE2" size="5" value="">    +     <input type="text" name="PRICE3" size="5" value="">    +     <input type="text" name="PRICE4" size="5" value="">    +     <input type="text" name="PRICE5" size="5" value="">    +     <input type="text" name="PRICE6" size="5" value="">
<br.>
<br.>
<input type="button" value="Pentium 4 2.2GHz" onClick="PRICE.value='527'">
<br.>
<input type="button" value="Athlon XP 2100+" onClick="PRICE.value='299'">
<br.>
<br.>
<input type="button" value="Some Video Card" onClick="PRICE1.value='100'">
<br.>
<br.>
<input type="button" value="Some MoBo" onClick="PRICE2.value='80'">
<br.>
<br.>
<input type="button" value="Some Sound Card" onClick="PRICE3.value='50'">
<br.>
<br.>
<input type="button" value="Some Hard drive" onClick="PRICE4.value='150'">
<br.>
<br.>
<input type="button" value="Some CD-ROM drive" onClick="PRICE5.value='20'">
<br.>
<br.>
<input type="button" value="Some Ethernet Card" onClick="PRICE6.value='15'">
</form>


</body>
</html>

as last time, take out the "." after the br. So what about calculating total and what about a submit button to e-mail it to us?

Thanks,

~Aunix
 

sash1

Diamond Member
Jul 20, 2001
8,896
1
0


<< those collapsable menus on webmonkey. I can sorta see how it works, its just I don't know how I could get it to work on my page: aunixm3.tripod.com

Thanks a lot!

~Aunix
>>

 

sash1

Diamond Member
Jul 20, 2001
8,896
1
0


<<

<< those collapsable menus on webmonkey. I can sorta see how it works, its just I don't know how I could get it to work on my page: aunixm3.tripod.com

Thanks a lot!

~Aunix
>>

>>