Jump to content
xisto Community

Roly

Members
  • Content Count

    153
  • Joined

  • Last visited

Everything posted by Roly

  1. I've only skate boarded in the past with my friends' skateboards. I always fell but it was fun still. And I had a skateboard but I broke it doing too much ollies (ollies are wheny uo jump right?).
  2. Speed is why I like GameFAQs spinoffs better than the usual invisionfree and phpBB boards. And I think he's using the GameFAQs Hell spinoff. And what spinoff name do you go by Greven il-Vec? I used to use a GameFAQs spinoff for my site but now I decided to use my own, but I'm not making boards this time. I don't like being the admin of boards that much >_>
  3. For all of you who hate school, you should already have gotten used to it. I mean you will go to it every year so you might as well make good use of it and look forward to it. And when you wake up you gotta say something positive like "Alright another beatiful day of school ". Even though I say this I don't say that because now I take the bus to school but soon I'll probably have acar or get a ride.To be honest when I was in 6 through 8 grade I hated school. Worst years ever. But starting on the 9th grade I began to understand stuff and how it all works even though I was still a n00b. And this has helpedme but whenever I do something like the first day of school I say to myself, "I hope I really embarass myself and look like an idiot". It may sound negative but it means I'm accepting reality and ready to face it in a way.I have this friend who is homke school since 8th grade. He's a Junior now but he told me his reason and it seemed pretty good. He said a guy ran over a popular guy in his school and kiled him. The guy died. My friend said "that'll teach him to not be a ****head" about the guy who ran over the other guy. But somehow it got around that he was talking about the dead guy. So immediately everyone hated him except his true friends. He got beat up almost every day by many and no one liked him. So he then stayed home schooled. He moved away after about 2 years but decided to stay home schooled still >_>
  4. I do a lot of things other than computer. I go outside and try to teach my dog to play frisbee, ride my bike to the mountains, exersise, and listen to eminem. I don't hang out with my friends a lot 'cause right now I don't have any close friends we only hang out at school and sometimes after school.
  5. Umm, you're supposed to do that yourself because it's gonna be the way you would want it. Here, use the colors table near the middle to help you, it helps me, http://www.w3schools.com/css/css_colors.asp
  6. I'm not sure I never liked any of those boards much because of their speed.
  7. I don't think having that many tables is a good idea but if you want to go for it. But if you were to do it with only one table I would recommend you store the information with another field, company. That field would be the same if the company information is the same. For example, company 1 would be like: Then run a mysql query that would look like mysql_query('SELECT * FROM clients WHERE company = '.$_GET['company']);Then do a while statement to output all the company information to the page.
  8. Well I do need a good connection 'cause I've had other people connect to my pc using CesarFTP but it doesn't work after a while.
  9. You should add an id to each client and link on the left side of the screen. The link should be something like "index.php?id=1". Then the code should be like, <?php[/br]if(isset($_GET['id']))[br]{[/br] $result = mysql_query('SELECT * FROM clients WHERE id = \''.$_GET['id'].'\'');[br] if(mysql_num_rows($result) > 0)[/br] {[br] $row = mysql_fetch_assoc($result);[/br] echo '<b>ClientName:</b> '.$row['ClientName'].'<br /><b>PasswordReset:</b>'.$row['PasswordReset'].'<br /><b>RemoteAccess:</b>'.$row['RemoteAddress'];[br] } else[/br] echo 'Invalid Client ID';[br]}I hope that helps, I didn't really udnerstand what you want to do >_>
  10. With single quotes you can make a new line by just pressing enter, echo 'line 1[/br]line 2[br]another line omg';With double quotes you can press enter or use \n, echo "line 1\nline2[/br]another line omg";And sure ask more questions that's what I'm here for
  11. Other coders have recommended jedit, http://jedit.com/. But I just use notepad >_>
  12. No problem just get all the code from getarea.php and add it to index.html. And change the name index.html to index.php so php works on it. Oh yeah and take the action off your form tag so it goes to the same page. <form id="headerSearch" method="post">
  13. No you need to give a name to your text field. For it to fit my code name it area and make the form method post. It doesn't have to be post, you can leave it as method="get" but you have to change $_POST['area'] in my other code to $_GET['area']. I don't know why I prefer post over get >_> . Or jsut copy this >_> <form id="headerSearch" action="./getarea.php" method="post">[/br] <div>[br] <input class="text" name="area" type="text" value="Area Code Search"[/br] onFocus="if (this.value == 'Area Code Search') this.value=''; else this.select();"[br] onBlur="if (this.value == '') this.value='Area Code Search';" />[/br] [br] <input type="submit" class="submit" value="Go!" />[/br] </div> </form>
  14. Oh ok that works better. Yes that is possible, this is how: <?php[/br]// insert database connection here[br]$db = mysql_connect("localhost", "root","");[/br]mysql_select_db("db2",$db);[br][/br]if(isset($_POST['area']))[br]{[/br]$result = mysql_query('SELECT * FROM area WHERE acode = \''.$_POST['area'].'\'');[br]if(mysql_num_rows($result) > 0)[br]{[/br] $row = mysql_fetch_assoc($result);[/br] echo '<b>Area Code:</b> '.$row['acode'];[br] echo '<b>State:</b> '.$row['state'];[/br] echo '<b>Details:</b> '.$row['details'];[br] echo '<b>Zone:</b> '.$row['zone'];[/br]} else[br] echo 'No matches were found for the area code you submitted.';[/br]}?>
  15. I always upload them and test them, I always expect at least one error the first time. Maybe when I get a good enough computer I'll install PHP in it.
  16. I'm not sure what you mean with getting that to work but I'll try to help. The way I would do it is I would put all the area codes in a database and then search the database to see if the area code submitted matches. <?php[/br]// insert database connection here[br][/br]if(isset($_POST['area']))[br]{[/br] $result = mysql_query('SELECT location FROM areacodes WHERE area = \''.$_POST['area'].'\'');[br] if(mysql_num_rows($result) > 0)[/br] {[br] $row = mysql_fetch_row($result);[/br] echo 'The area code you submitted is in '.$row[0].'.';[br] } else[/br] echo 'No matches were found for the area code you submitted.';[br]}[/br]?>[br][/br]<form id="headerSearch" method="post">[br]<div>[/br]<input class="text" type="text" name="area" value="Area Code Search"[br]onFocus="if (this.value == 'Area Code Search') this.value=''; else this.select();"[/br]onBlur="if (this.value == '') this.value='Area Code Search';" />[br]<input type="submit" class="submit" value="Go!" />[/br]</div>[br]</form>[/br]
  17. Try making a chat. First make it so it records data in a file. THen after a while change it to a mysql database which will require you to know another language >_>
  18. umm... wtf why did my post get deleted? o_OWhat I meant was that I listen to music I hear on MTV and MTV2. Other than that I just listen to Eminem.
  19. The only things I don't like about school is the getting up early thing and homework. Although I would like to get used to getting up early thing because that's something I want because today I woke up at 1 pm and I wasn't very pleased.
  20. lol where do you live? I remember mexico's grade system is like that o_O
  21. Yeah I got an A- in that class, It was about reading in computers, by myself, and in group.
  22. Why'd you sat on a ball? No couch/chairs? o_O
  23. One of my teachers told us there's gonna be less summer vacation over the years. I soon cleverly thought of global warming and asked if it's because the earth is getting closer to the sun o-O
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.