Jump to content

dclamp

Members
  • Posts

    102
  • Joined

  • Last visited

    Never

Everything posted by dclamp

  1. yeah it should work on your online server.
  2. And in the header for the mail function. You have $header = "..."; put content type there as well.
  3. yeah but if the name is changing frequently, then it woulnt work.
  4. I am afraid i dont know of an alternative. Sorry.
  5. I know it is more of a forum software issue, but the php tags are acting odd. for example: <a href="<?php echo $mylink; ?>">Click Here</a> Above, the HTML should not be highlighted. It is acting as if there was an unclosed PHP tag: // If i close the tag: ?> <a href="<?php echo $mylink; ?>">Click Here</a> then it seems to highlight correctly.
  6. the php tags are [ php] your code [/code] ?> <td> <a href="<?php echo $thispage; ?>?rowNumber=<?php echo $previous; ?>#suggestion">Previous</a> </td> much cleaner to me.
  7. it is because you are using windows. I am pretty sure htaccess files only work on *nix
  8. In case you don't know what was wrong, the #suggestion was outside of the href="" tag. ah I didnt notice that the first time. Should be using php tags as well as cleaner code.
  9. that is assuming my example was what he actually needed.
  10. you need to set the content type in the Header: Content-type: text/html;
  11. When do you turn 16? and where in the us do you live?
  12. Open notepad, post those lines, edit it to apply to your needs. When you save it, make sure you type in ".htaccess" and underneath that make sure "All Files" is selected.
  13. expanding on that, you just need to loop through all the items in the directory, using directory functions.
  14. Well since we dont have telepathic powers, why dont you post your code?
  15. You have to put it in a .htaccess file, in the www root.
  16. Yeah i am pretty excited. Although 17 isnt a "special" age... 13, 16, 18, and 21... But, i can go see rated R movies alone
  17. That code will work. But it is best if you use echo, not print.
  18. dclamp

    PHP

    result is some one who cant count to 6.
  19. Have look here http://www.webmasterworld.com/apache/3180546.htm
  20. Did you even look at the link i posted? It explains it very clearly. $names = array(); // blah blah blah $fruits = array(); // blah bla $arrayfill = array_fill_keys($names, $fruits) couldnt get any harder than that.
  21. I am a little confused. Let me try to clarify. You have a paragraph (i will use a sentence for example sake): "Hello my name is Name!" and you want to put some one's name in there?
  22. hmm. have a look here, maybe it will help. http://www.webmasterworld.com/apache/3180546.htm
  23. have a look at array_fill_keys()
×
×
  • 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.