• Ernie Ball
  • MusicMan
  • Sterling by MusicMan

phatduckk

Well-known member
Joined
Jul 25, 2004
Messages
8,145
Location
San Mateo, California, United States
skabassist13 said:
can any of yall tell me what the forum is coded in? i went to the view source thing and it doesnt make sense to me at all. it doesnt look a thing like html......

this page in particular ...

Looking at the URL: http://www.ernieball.com/forums/showthread.php?t=4347&page=2

showthread.php: This page is written with server side PHP code (php talking to the databae using SQL)
t=4347: 4347 is probably the thread id in the database table
page=2: second page

so the php script at /forums/showthread.php got t=4347&page=2 as input variables and asked teh database for the "replies" on page 2 of thread 4347

ok lets view source ....

lines 6-8 are meta tags ... general info crap. search engines use these to a certain extent
line 11-284 are CSS ... (learn: http://www.w3schools.com/css/default.asp) css is all about how stuff looks, colors; font sizes etc ...
lines 295-296: these lines include 2 external JavaScript files
line 298: external css file
line 299-315: more css
line 319 - till teh end is mostly HTML: a quick scan through and you can see some JavaScript sprinkled in

do i get a free bongo for giving the board web lessons :)
 
Last edited:
Top Bottom