Jump to content

gokuDX7

AC Elite
  • Content Count

    3,498
  • Joined

  • Last visited

  • Days Won

    25

Everything posted by gokuDX7

  1. ya you guys have it pretty bad when it comes to straight out heat but New England is so messed up when it comes to weather. One day it could be 95 degrees the next day it could be 20 degrees. I'm really not into this heat at all. I'd much rather it be snowing out then humid and nasty. I hate sweating and getting all sticky with no wind at all outside. I really hope we get some rain or the storm you NY people are getting. But good news, we got all the air conditioners in and the house is slowly cooling down inside. I think my computers are happy too, they no longer make weird noises like they where before lol.
  2. sounds like my dad lol! If I ever tried to move, the stuff I leave behind like my boat would be sold in a heart beat with the excuse of "I got you that for your b-day so I should be able to sell it and id never see any of the cash >.< .
  3. lol, Marilyn Monroe skirt for your Chii haha. Now that would be funny to see.
  4. ya I think my computers are gonna blow if I don't get the air conditioners in soon. Right now I have like 3 fans pointed at them but the computer room is around 110 degrees lol.
  5. its been 95 degrees for 3 days here in NH. This sucks so much! It figures we get a heat wave before me and my dad get the chance to pull our air conditioners out of storage and install them. I really hope the rest of the summer isn't this hot all the time. It's nuts!
  6. rofl I forgot all about Kisame. I bet hes still out there waiting lol. "where the fuck are those guys".
  7. wow what bullshit. I dont know if the translation was wrong in the older chapters or if the mangaka changed them on purpose in the new chapters, but Itachi definitely said meet me at xxx place, to naruto after their little meet up in the woods. I'm happy Naruto at least got something from Itachi, but like all his other attacks, this is probably a one shot thing that's powerful but will probably kill his own body at the same time. Which makes it stuuuupiiiidddd. Heres my take on how the story will progress. I think Sasuke's goal is gonna change or at least become more clear later on. He says he wants to "destroy the leaf" but I think in the future chapters he's gonna target the originals that made the plans to kill off the uchiha (aka. Danzo, old man, old women). Of course no one in the Leaf nor his team mates will know this so it will probably be an all our war against Sasuke and his team vs the leaf. When Ssuke says "I'm going to resurrect the Uchiha my own way" thats the impression I got. As for J (aka. Ero Sannin) I still don't think hes dead. I mean it was left wide open so he may come back at the last minute to fight Pain(s). Or, if he is truly dead, then like you said Tsunade will probably take revenge on them once they come to the Leaf (if they ever do). Kabuto is on his quest for self enlightenment or some power hungry shit like that lol. Somehow I think Oroch will be brought back threw Kabuto lol. I know its a long shot but I really cant see Oroch just being killed by fire lol. That happened way to fast. Sai, he's probably in the village doing the same thing Naruto was doing. Sitting around thinking or training. What I want to know is how all the monsters play a roll in this. You know damn well Mandara is bad. He's got plans for Sasuke and Akatsuki and I think Itachi knew that.
  8. Wow I cant believe I didn't hear about this before. I was searching google for some bleach screenshots and I came across these. So the next logical step was to check out youtube and I found this. lol the characters look so much like the real thing! Its amazing.
  9. ya, this was supposed to be for https thats why theres unneeded things in it. Like I said, I was to lazy to take them out and edit it more to her need and since it worked there wasn't really a point for me to spend more time on it since I knew you would probably view the thread and make something smaller .
  10. well theirs about 100 different ways you can do it using regular expressions (aka. regex). preg_replace takes the regex that we set and searches for that expression in whatever source we feed it. So for your site it's searching for a number of things. 1) content thats starting with http:// 2) a word after http:// (1 or more) 3) a digit (if any at all) and some other random stuff that could be stripped out but I was to lazy to do lol. This regex is over kill and could be cut down even more but since it works, don't worry about it.
  11. try this I changed the regex. &lt;?php // Request data $result = mysql_query("SELECT * FROM members ORDER BY id ASC"); if (!$result) { echo("&lt;P&gt;Error performing query: " . mysql_error() . "&lt;/P&gt;"); exit(); } // Display the members while ( $row = mysql_fetch_array($result) ) { echo("&lt;li&gt;" . $row["name"] . " - "); //$site = mysql_fetch_field($result, $row['sitelink']); // takes the $row['sitelink'] database content and checks to see if theirs anything starting with http://. If there is, then it turns it into a link. $site = preg_replace('@(http?://([-\w\.]+)+(\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', '&lt;a href="$1"&gt;$1&lt;/a&gt;', $row['sitelink']); //If there was no http:// or any content saved in the $row['sitelink'] field then we print hpage if($site == "") { print ("hpage"); } //else we print &lt;a href="http://url"&gt;url&lt;/a&gt; else { echo $site; } echo(" - " . $row["country"] . " | &lt;b&gt;Recieved:&lt;/b&gt; " . $row["recieved"] . " | &lt;B&gt;Sent:&lt;/b&gt;" . $row["sent"] . "&lt;/li&gt;"); } ?&gt;
  12. oops my bad I forgot to add another = &lt;?php // Request data $result = mysql_query("SELECT * FROM members ORDER BY id ASC"); if (!$result) { echo("&lt;P&gt;Error performing query: " . mysql_error() . "&lt;/P&gt;"); exit(); } // Display the members while ( $row = mysql_fetch_array($result) ) { echo("&lt;li&gt;" . $row["name"] . " - "); //$site = mysql_fetch_field($result, $row['sitelink']); // takes the $row['sitelink'] database content and checks to see if theirs anything starting with http://. If there is, then it turns it into a link. $site = preg_replace('/(.*)(http:\/\/[^\s$])(.*)/', '$1&lt;a href="$2"&gt;$2&lt;/a&gt;$3', $row['sitelink']); //If there was no http:// or any content saved in the $row['sitelink'] field then we print hpage if($site == "") { print ("hpage"); } //else we print &lt;a href="http://url"&gt;url&lt;/a&gt; else { echo $site; } echo(" - " . $row["country"] . " | &lt;b&gt;Recieved:&lt;/b&gt; " . $row["recieved"] . " | &lt;B&gt;Sent:&lt;/b&gt;" . $row["sent"] . "&lt;/li&gt;"); } ?&gt; </span>
  13. try changing the print $site; to echo ("$site"); PS. is their an sql field with the name sitelink? If their is not, then thats why nothing is being displayed.
  14. Not sure if this will work or not. I didn't test it. I used Mathias' regex as well so who knows if it works or not. Add a few comments as well so you know what it does. &lt;?php // Request data $result = mysql_query("SELECT * FROM members ORDER BY id ASC"); if (!$result) { echo("&lt;P&gt;Error performing query: " . mysql_error() . "&lt;/P&gt;"); exit(); } // Display the members while ( $row = mysql_fetch_array($result) ) { echo("&lt;li&gt;" . $row["name"] . " - "); //$site = mysql_fetch_field($result, $row['sitelink']); // takes the $row['sitelink'] database content and checks to see if theirs anything starting with http://. If there is, then it turns it into a link. $site = preg_replace('/(.*)(http:\/\/[^\s$])(.*)/', '$1&lt;a href="$2"&gt;$2&lt;/a&gt;$3', $row['sitelink']); //If there was no http:// or any content saved in the $row['sitelink'] field then we print hpage if($site = "") { print ("hpage"); } //else we print &lt;a href="http://url"&gt;url&lt;/a&gt; else { print $site; } echo(" - " . $row["country"] . " | &lt;b&gt;Recieved:&lt;/b&gt; " . $row["recieved"] . " | &lt;B&gt;Sent:&lt;/b&gt;" . $row["sent"] . "&lt;/li&gt;"); } ?&gt;
  15. so you want it to check a person's content (ie. field that has something they inputed) for urls. If it finds a url you want php to make the url into a link so people can click on it, correct? Or are you talking about something different? Mathias, just did the regex for you to switch urls into clickable links.
  16. are you saving the links as html links <a href="http://link.com">link</a> or are they plain text http://bla.com If there plain text you will have to use regular expressions (regex) and or str_replace() to replace them with html links.
  17. I didn't say he was a nobody, I said he has no part in the main Naruto vs Uchiha story RIGHT NOW. They randomly tossed him in to fight J and then tossed him aside. They also make it seem like hes taking orders from Mandara...so I'm sure Pain plays a bigger role but right now he was random.
  18. Sure its interesting to hear that theres someone supposedly stronger then everyone in the ninja world but it had nothing to do with the initial story other then to show Pain being J's student in the past. It's kind of like the Uchiha city with the two women in it...it was random. I'm sure once they have a second Pain ark and explain wtf is going on and what role he plays in all this, then it will have something to do with the major story line...but until then it was just something random they added so the J fight would be interesting.
  19. It looks good. At least from the ads on the TV. I no longer listen to Rotten Tomatoes or IMDB anymore when it comes to reviews. They tend to display the exact opposite rating of what a movie should get.
  20. ya, that's kind of why I asked you for proof before hahah. I didn't wanna go searching through all the endless chapters of blaaaa just to find one page that might or might not be what I thought I saw a year or two ago haha. In any case, I think if Naruto killed Sasuke and Sasuke killed Naruto, it would have some significance and weight towards Naruto possibly being a Hokage. But I have a feeling by the time that day comes, Naruto will probably already be a Hokage or at least close to Hokage level. I can definitely see this getting dragged on for another year or two with mindless unrelated crap like the whole Pain ark.
  21. ah ic, well I guess he did get it before hand. Thats kind of weird. I thought there was a chapter in the future where the 3rd explained how he got his position as 4th...I'll have to look for it later.
  22. I'm sure there're other references too, but I just started from the beginning and was lucky to find it so quick for you X'D *phew* ...I still don't understand....that chapter is now the fight with the 9 tails with no reference to the 4th lol. Godgrave can you save the image and upload it somewhere .
×
×
  • Create New...