Jump to content

tyler

Members
  • Posts

    69
  • Joined

  • Last visited

Posts posted by tyler

  1. Your never invisble someone out there can always find you.By The Way:I can't have my own server because one I have a very old computer possibley 1999 one thats windows 98 with a 5 gb and I have only 32% of memory left.....And from what I read at apache you need like a windows 2000 or xp to do that ######. I'm getting a xp and dsl in a month thoe so yeah.....

  2. Cause I remebr doing this alongggggg time ago on tripod and I made alttle scroll box but i couldent get the width and height right :)But what i need is a drop down menu, for music.

  3. the problem with using a computer for all you use it for now AND a server, is that it will use a lot of resources (memory, CPU, etc.). you should probably get a used computer or something to do the server with.it might be cheaper to just get hosting. you can get free hosting at several places, and a domain name can be as cheap as $3.00 a year. (yahoo domain name registration first year is like 2.95)
    But on Yahoo geocities someone can hack your id and delete it and make your website go poof. Trust me I know from experince >.<
  4. Nah, I meant like ok its a pull down menu you click the arrow and it shows a small list of music you click the one you want and it plays....Kinda wanted to merge it with the embeded music player cause i like pausing it but if you cant do that its fine :)

  5. When I was in the 4th grade the teacher was giving out a picture on are feild trip and everyone wanted it and you were supposed to guess 1 to 10 and i guessed 7 and i got the picture.Don't ask how I remeber this.......

  6. Ok I get it....It's more or less a text box in my opinion. But right now I'm using a reaguler frame and it's working fine so now i'll reserch the dropdon menu.

  7. Hey I got php now how do i make thoese docs like I make a whole new webpage or soemthing or go into notepad and make like some html stuff then save as start.php??????

  8. Anyon know of a free webserver that works for windows 98 :| or xp? Perferbaly 98 but also compatibla with xp because im getting one of thoese soon but i got 98 now :|

  9. Hey I just added that browser code in javascript really cool. I was just wondering is it possible to add ip showing to that too? and if so can i get cookies emailed to me tellng me there ip for future renfrence?

  10. I tryed the banner thing it didnt work for me but I found a websie that does but I dont knwo how he does it. He also has downloads were when you put the mouse over theres a box on the right that give a desription. I think thats really awsoem.But I have no clu on how to rip html from websites :).....

  11. And another thing that I've found is really, really useful is when you include other files into your php document.You can have two files - say start.php and end.php. The start one has basically all your opening html statements - eg doctype, html and headers, meta tags and css doc, plus any standard menu that you want on all your pages.The end one has all the footers and html closing statements.Then all you need to do to create a new page is have:<?phprequire 'start.php';xxxxxrequire 'end.php';?>and the xxxxx bit is really just the main content of that particular page. It saves loads of time because you don't have to keep typing or copying & pasting all the boring stuff that's the same in each page.Its also handy because if you want to change your menu you only have to change the start.php or end.php (depending on where it is) and not each and every single page. But the biggest tip when it comes to php is to get to grips with double quotes and single quotes and escaping characters. Believe me, you can spend hours trying to debug when it all goes wrong and it turns out to be something so simple like you've put a " without escaping it first.My second biggest tip is to understand the three main bracket types () and [] and {}. Its guaranteed to cause problems.
    Man that will save me tonz of time, but what I'm having trouble with the php docs itself. So I just download the php and then what?
  12. From what I read from the basix of php tut, it's mostly just variabals?I suppose this could help if your leaving your website for shwile and to keep the date up in check :)

  13. After me and y freinds website is big enough were moving to make a php site. The thing is hes expecting me to make it for him and I've seemed to have forgotten the codes. :) So I guess first things first is to lern how to make a PHP site.......I'm going to be reading the tuts and if I don't understanda thing I'll just post a help question here.....Well I'm first gonna learn how to create a PHP document and that I still don't get it.....Hopefully I will

  14. I have two things to say to that. 1) they clearly aren't very smart and 2) they do it for credit, so of course they identify themselves. They want all their friends to see what they did, like grafitti. Unfortunately for them, that means people like us see what they did also and report them to their host and registrar.I'm confused by that statement, what do you mean that we are rude and forthcoming (forthcoming, btw, is a good thing). You sound like you have been upset here in the past, but your account is only 2 days old, have you been here under a different account? BTW, if you're frustrated with a web site, the acceptable way to deal with that is to not visit the website, regardless of whether you can or cannot control your anger. Someone being rude does not give you license to do anything with your 'crew', be it a DOS attack or abuse reporting or simple defacement. I'm not accusing you of anything, but just because you have the tools doesn't mean you should use them. If my neighbor upsets me I'm not going to go over there with my shotgun, I'm just not going to deal with them any more.
    Yes I hav been here under a diffrent account a long time ago. But I decided to come back because I forgot most of the codes I lerned because my computer was sabatoged by my freinds. What I meant about forthcoming is that one minute your very polite and anouther minutes your very rude I'm not saying any of "you" are I'm just saying in the past.I have to admit that this place has changed over the years and I'm very happy about the change.I also agree about the shotgun thing, but most of the time I can't help myself seeing as most of my neighbors are assholes.can I say that? >.><.<
  15. Hey the code you gave me isent working as I hoped.......Well I got the text in the bottom right but its not switching over to the other writings I made.......ok i did what you said see:

    <html><body><head><script LANGUAGE="JavaScript" type="text/javascript"><!--var current = 0var x = 0var y = 0// The number 100 represents the wait in milliseconds // between the typing of each character in the message list.var speed = 100// The number 2000 represents the number of milliseconds // between the changing of each message (2 seconds, here). // Anywhere between 1500 and 5000 would be fine.var speed2 = 1500function initArray(n) {  this.length = n;  for (var i =1; i <= n; i++) {	this[i] = ' '  }}// This is Message-Number Arraytyp = new initArray(4)typ[0]="Welcome To Yahell"typ[1]="Best Place For Your Cracking Needs"typ[2]="And I'm Not Lieing >:]"typ[3]="Don't Like The Site? You Know Were The Close Button Is"function typewrite() {var m = typ[current]// The _ can be removed by removing + "_" belowwindow.status = m.substring(0, x++)if (x == m.length + 1) {x = 0current++if (current > typ.length - 1) {current = 0}setTimeout("typewrite()", speed2)}else {setTimeout("typewrite()", speed)}}typewrite()//--></SCRIPT></head></body></html>

    I did what you said but it won't switch over to the other text at the messege center.......Did I do it wrong?

×
×
  • Create New...