Search results

  1. D

    Could you tell me the basics things about PHP (and Apache)?

    1 I started learning HTML (awesome and pretty easy to get started) 2 then after two years I found that css is the newer way to go (easier to have a single style on multiple pages at once, no table-based). 3 then, this summer I learned that there is PHP. I felt that this will make things even...
  2. D

    How can I convince my parents to let me take the gifted test?

    From what I have read, you seem very stupid. "... say I'm gifted and so do my parents" - everyone does this to everybody. Don't believe it. "behavioral problems ... such as being bored" - like you're the only one whose bored - everyone is bored, you just shouldn't express it. "strictly visual...
  3. D

    Simple php new line not working?

    $nickname = $_POST["nickname"]; $comment = $_POST["comment"]; $fp = fopen("comment.txt", "a"); fwrite($fp, $nickname + "</br />"); fwrite($fp, $comment); fclose($fp); Above code does not save stuff correctly on comment.txt instead of ---nickname--- new line ---comment---- , it gives...
Back
Top