Jump to content

Kurt

Members
  • Posts

    42
  • Joined

  • Last visited

    Never

About Kurt

  • Birthday 08/07/1993

Contact Methods

  • AIM
    BurgerDog50
  • MSN
    spamburger50@gmail.com
  • Website URL
    http://helnet.org

Profile Information

  • Gender
    Male
  • Location
    New York

Kurt's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Lol, whoever said I was joking?
  2. [quote author=jbog91 link=topic=101446.msg401701#msg401701 date=1153587349] I know you don't have to make a directory everytime someone signs up. Doesn't mod_rewrite require you to have access to some apache files that only the server admin has access too? [/quote] Just make a .htaccess file.
  3. Im Kurt, and im 12, but turning 13 very soon. I know most common web languages such as x/html, css, javascript, php, and a bit of asp. I learned actionscript when I was 11 (it was my first language). I learned everything else though this year and Im quite good at it because Im already making money
  4. C/C++ are not assembly languages and C+ doesnt exist ;)
  5. Can you post more info? I hardly know what you mean  ???
  6. [code] <?php $content=file_get_contents("file.txt"); $rows=explode("\n",$content); ?> [/code] Now, every row is in the $rows array. So, to access the first row you would do $rows[0]. To access the second row you would do $rows[1]. And, any other row after that, you know what to do.
  7. Um, you don't need anything special except php to make the mail() function work...
  8. I think most web programmers are use to high-level languages such as PHP, and assembly is one of the most low-level languages Ive ever known, next to binary. So no, I dont know assembly.
  9. Try changing: $result=mysql_query($query); to: $result=mysql_query($query) or die(mysql_error()); to see what the error is.
  10. I would do something like this: $mail=mail(blahblahblah); if(!$mail){ //insert into a database that it was bounced }
  11. Kurt

    Can I?

    I don't think it can be done with php...
  12. It's because $row itself is an array, and you can't explode an array, only a string.
  13. They probably use .htaccess to do this.
  14. [quote author=digitalgod link=topic=99923.msg393814#msg393814 date=1152409420] I already tried that and it didn't work, that's why i tried the 2nd echo ;) [/quote] You said you tried removing the second echo, but you never said you removed the semi-colon (;) after $row['content']. Do that, and I guarantee you it will work.
  15. Remove the second echo and remove the semi-colon after $row['content'].
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.