Jump to content

Flail-Meister

Members
  • Posts

    3
  • Joined

  • Last visited

Flail-Meister's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. I have one that I haven't seen yet in this, unless of course, I may be going blind? Well, anyways, my favorite, unexpectedly is just plain HTML. I would've never gone onto other langauges without first learning HTML. I started with it, then moved on to client-sides, then server-sides, then onto compiliation languages, and, well, HTML is just where I started... So, without learning it first, I would've never been in the world I live in now.
  2. To create a new line in the file, use \n or \r\nIn the file, it should create a new line, as the example shown: $myFile = "testFile.txt";$fh = fopen($myFile, 'w') or die("can't open file");$string = "Testing Test\n";fwrite($fh, $string);$string2 = "Tutty Tut\n";fwrite($fh, $string2);fclose($fh); Should come out like: Testing TestTutty Tut EDIT: Skym beat me to it. Always when I'm writing...
  3. Well, you can also use an image-map (Image.) for auto-pop, so, technically, it isn't a new page, but a graphic stuck in one location which can be cancelled out, and more.
×
×
  • Create New...