Jump to content

Frylock

Members
  • Posts

    88
  • Joined

  • Last visited

Everything posted by Frylock

  1. Bah! Who cares... All the cool people are on Server 35.
  2. I am also a Trillian user. Great product. Though the vast majority of my IMing is via AIM. At least I personally like that one the best, and it seems to be the most popular amoung those I IM with.
  3. That's a big task you have there. While not that hard to do using mySQL, it would take work to set-up the way you want it. Your best bet may first be find a pre-made mailing list script and use that. Try maybe php.resourceindex.com or hotscripts.com/PHP/ or google even.
  4. I'm going to assume each word you want on a newline is on a newline in the text file... There might be better ways, but what I just do is read the entire file into an array, and then just go through the array and print out each element. Like... >$file_array = file("/path/to/file.txt"); while (list($i, $val) = each($file_array)) { echo "$val<br>"; } Or using your file pointer ($fp) try this. >while (!feof($fp)) { $nextline = fgets($fp, 1024); echo $nextline . "<br>"; }
  5. Whoops, yeah I misread what your variables were set to. Do what that glassgorilla says instead.
  6. In short, yeah you have to add something to your .htaccess file to get html files parssed by the php interpreter. Try adding this to .htaccess: >AddType application/x-httpd-php .htm .html
  7. Do you mean just the PHP function that does this? Like... >$youremail = "youremail@******"; $subjectline = "New Comments from $name"; $letter = "User $subject sent you these comments:\n\n$comments"; $headers = "From: $name <$email>\n"; mail($youremail, $subjectline, $letter, $headers);
  8. Stop eating beef? I might as well become a tree-huggin, dolphin lovin, granola eating hippie right now! Most of the times I perfer eating chicken anyways, and Buffalo isn't bad, but I still need my hamburger and fries...
  9. I like Google. And not just because I get more hits from it than I did with any other engine, ever. But competition is good. I just don't want to see 50 search engines pop up again...
  10. Well, what I would do is search the script for where the line "SUGGEST THIS PAGE TO A FRIEND..." appears since most likely right after it will be where you could manually enter any html tags you want for the url part. Seems like it's making the url a link so that's the links default color instead? I don't know since I don't know the script.
  11. Best Music (Albums) The Marts Volta - Deloused in the Comatorium, Radiohead - Hail to the Theif, Motion City Soundtrack - I am the movies, Kenna - New Sacred Cow, Zwan Best Movies LOTR: Return of the King, Adaptation, Lost in Translation, Elf Best DVDs Tenacious D: The Complete Master Works, Auqa Teens Hungar Force vol. 1 Worst of: 50 Cent. The Hulk. Hmm, not sure what else, but Hot Hot Heat certainly isn't one of them!
  12. What I did was make a "tz.php" that I could load in my browser and show me the timezone of the server: ><?php echo "Timezone (GMT Offset): " . date("T (O)"); ?>
  13. Set everything to 777 just to test it and see if it still doesn't work. Maybe you have the path names for the server wrong? (/home/singles/public_html ?)
  14. Amy from Futurama... Maybe Haruko from FLCL
  15. Just cause the error that gets that request. Like 401 is password protected so password protect a folder and try accessing it without using a password, 403 is private so chmod a file so public can't access it and try it, or 500 which occurs with a bad SGI script (just make a 'test.pl' with junk and access that).
  16. Why must you lie like that! And if you remember what that poem says... lieing leads to prison! But we all know that's not true... look at the last few Presidents alone to see where the folly in that poem lies...
  17. What a coincident! And on the very same day I too was going to post a first ever pic of myself! But seeing as how I don't want to upstage the Master Guru, nor do I want to make any one 'feel' inferior, I'll wait yet another year... And remember, this is Halloween, NOT April 1st...
  18. I'm from over here in Southeast Wisconsin. Like so many around here, my grandparents are from Germany. I don't know what that has to do with anything either, but I said it anyways.
  19. Even though I'm not sure what he means, I've used something like this before to change the contents between a DIV tag by clicking a link: ><script language="JavaScript"> <!-- function change(divtochange, newtext) { divtochange.innerHTML = newtext; } //--> </script> <a href="javascript:change(testdiv, 'See it changed!');">(click here to change)</a><br> <br> <div id="testdiv">Original text.</div> This though I think might only work in IE. I really don't know much about dhtml. Dreamweaver has a bunch of functions for stuff like this.
  20. I still like using Crimson Editor. Pretty simple, the way it should be, but still very useful. www.crimsoneditor.com
  21. This may be somewhat mute now, but the easiest way to stop people from seeing the contents of any of your current folders, or folders you make in the future, is to just add this line to your .htaccess file in /public_html Options -Indexes
  22. I really don't know much about mod rewrite either, but I did try it out here. I was basically trying what you said: RewriteRule /article/([0-9]+)/$ /article.php?story=$1 [T=application/x-httpd-php] And it did work, if that helps any. I don't really use it though. I still just use the "article.php?story=xxx" URLs for now. I don't know if the difference between these two simple links makes that much of a difference to search engines anyways. But what do I know.
  23. Heh, thanks anyways. I'll try looking around some more (need to get my google search count up anyways;) and see if I can find anything useful. So far I havn't. So I'll just cross my fingers for now and maybe I'll get lucky and it won't happen again...
  24. This is the 3rd time in a month this has happened to me. I go to try and load my site and I see this: So then when I check mySQL (via phpMyAdmin), I always find one table (and all 3 times a different table) which gives me this error: I had been just reloading the table from a backup, but that's getting old fast. I know this isn't much to go on, but any hint as to what's going on? Anything in particular I should look for? I haven't changed anything recently either. Thanks!
  25. At first I was worried since I liked the way it looked, but my fears were quickly calmed. It's what I liked before, just some of the areas redone. So overall I like it and the new changes, but while it probably was my crappy connection, it seemed to take a LOT longer to load. To continue the really picky trend, you might want to put Unlimited FTP Accounts! and Unlimited MySQL Databases! on separate lines in the hosting plan section just the the rest.
×
×
  • Create New...