Search results

  1. J

    Laser Tag Website

    I'd say nothing.......it loads too slow.
  2. J

    How to hide JavaScript source code?

    place it in a js file and add it in as an include.
  3. J

    What i need to know

    if you're a beginner, just use dreamweaver. You will learn as you go.
  4. J

    i need some help

    Here.....this works. just change what you want in testfile.txt
  5. J

    Auto-Date

    I think with what you're wanting you'll need to go to a server side language. I don't think jnjc's suggestion will help because you're wanting something to be there when the page loads and javascript really can't do that to my knowledge.
  6. J

    i need some help

    I edited the code to show you what you would need to change. you'll need to make a php page.
  7. J

    i need some help

    What you could do is store the marquee in a text file and use php's to read the file and display on the web page. Here's some code you can use: $myFile = "testFile.txt"; $fh = fopen($myFile, 'r'); $theData = fread($fh, filesize($myFile)); fclose($fh); echo $theData;
  8. J

    Dynamically Created multiple sheet excel file in asp (idea might work for php too)

    This is a way to do it in classic asp. If anyone wants to know, here's how you do it: Say you have 2 asp pages that dynamically create tables. You want these tables to be exported into excel on separate sheets. What you will need to do is create a new page call it export.asp (for example)...
  9. J

    Screen Resolution conflicting with Website deign. Help!?

    PHP has some server variables that should have user screen resolution in there.
  10. J

    Screen Resolution conflicting with Website deign. Help!?

    you should get a 1024x768 template and build everything within it. Most computers run on that resolution so it's a pretty safe bet.
  11. J

    Will PHP work?

    You don't need perl or cold fusion...just do it all in php.
  12. J

    Newbie programing question

    It's not programming to me if you're using a CMS....
  13. J

    Redirecting entire page from iFrame

    you might put it in the body tag. something like body onload="opener.location='url'"
  14. J

    Other sites out there...

    I'm what you would call a "programmer" and I'm here. I don't really think all the languages should have their own section because they're pretty much all alike. If you know one, you pretty much can do anything in the other ones.
  15. J

    Redirecting entire page from iFrame

    you might try onclick="opener.location='url'"
  16. J

    Simple database

    maybe xml....
  17. J

    Form Submissions

    You'll need to update gdform.asp page to make it read that way.
  18. J

    Can you make a good template using notepad and html?

    Dreamweaver and all other programs like it are for those who like to put "Visual" in front of their favorite languages. So Dreamweaver kind of does "Visual HTML". For those of us who prefer to not be restrained, notepad or textwrangler are the way to go.
  19. J

    looking for the best 3d graphics program for me

    Blender's good, unless you can afford Maya.
  20. J

    Best way to calculate form fields???

    care to explain?
Top