Recent content by Tasm

  1. T

    What is going wrong in this simple perl program?

    Guess perl doesn't like the \n on the print statement. try <br/> instead
  2. T

    What are some example of intelligence that you have seen in animals?

    I can play catch with my dog where I pretend to throw the ball, and he picks up what is going on quickly. But my cat doesn't understand the concept of the ball at all. So what intelligence have you seen in an animal?
  3. T

    Do you think it should be against good standards to have ads over text?

    When I go to a website to read something, an advertisement pops up over the text I want to read. Then I have to wait for the advertisement to go away. Do you think it's an abuse of the internet?
  4. T

    Why does my javascript work in IE but not in Google Chrome?

    I posted my page and it works perfectly in IE, but not in Google Chrome. I think it might have something to do with jQuery. Can anyone look at the code and tell me what might be the problem? http://www.loothog.com/Systems/table/tableCover.html Thanks for any suggestion
  5. T

    Why is it bad to use html tables?

    I used tables to position my image elements so when a user clicked on the image, a span tag would be created for the td element and added. It showed the text over the image. I was told tables are bad to position elements so I used divs, now I can't seem to do the same thing. So why are tables bad?
  6. T

    html how do I align DIV?

    Can anyone help me change the code so that the text shows up over the image? I'm stuck, Thanks! <body> <div id="image1" background:"planets.gif" style="position:absolute; overflow:hidden; left:224px; top:179px; width:24px; height:26px;" onClick="test(this);"> <img style="width: 24px; height...
  7. T

    html how do I align DIV?

    Can anyone help me change the code so that the text shows up over the image? I'm stuck, Thanks! <body> <div id="image1" background:"planets.gif" style="position:absolute; overflow:hidden; left:224px; top:179px; width:24px; height:26px;" onClick="test(this);"> <img style="width: 24px; height...
  8. T

    html how do I align DIV?

    Can anyone help me change the code so that the text shows up over the image? I'm stuck, Thanks! <body> <div id="image1" background:"planets.gif" style="position:absolute; overflow:hidden; left:224px; top:179px; width:24px; height:26px;" onClick="test(this);"> <img style="width: 24px; height...
  9. T

    HTML Help! Is it possible? Or need Java or something else?

    If you are not using a database or anything you could try an html hyper link within the same document. http://www.w3schools.com/html/html_links.asp
  10. T

    Creating unique file names in PHP?

    Try this instead. $fp = fopen($id.".xml", "a"); The . is concatenation in php.
  11. T

    How do i host a html file?

    try freewebs.com
  12. T

    What is the domain? (Pre-calculus!)?

    (x, y) -> (a, f(a)) -> (domain, range) -> (input,output) -> (arguement, value) EXAMPLE Set: A = {a1, a2, a3, a4} B = {b1, b2, b3} f = {(a1,b1), (a2,b2,), (a3,b1)} Domain f: {a1, a2, a3} Range f: {b1,b2} Domain is your input into the function and the Range is your output.
  13. T

    I need help with pictures and html?

    Check if your extension is .jpg or .JPG. Sometimes that causes a problem where the html checks for .jpg instead.
  14. T

    Why does a PHP session work on one computer, but not another?

    Maybe you have cookies blocked or something else blocked on your browser
  15. T

    Why is learning HTML so boring?

    Come up with a project. If you just try and learn the code it's going to put you to sleep, but if you are working towards creating a website, then you learn as you need it.
Back
Top