Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276
Full Statistics
|
Online Users |
There are currently 239 online users. » 0 Member(s) | 237 Guest(s) Bing, Google
|
Latest Threads |
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 6,414
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 775
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,546
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,256
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,141
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 1,010
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 985
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,203
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 1,009
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 964
|
|
|
This girl in my class got burned bad by my teacher. |
Posted by: TheFlame - 05-11-2011, 02:43 AM - Forum: General Discussion
- Replies (2)
|
 |
There is this girl in my class who LOVES Justin Bieber and this is what happened in my class. (Her name is Alisabeth)
Alisabeth's backpack: Baby Baby Baby Ohhh!
Teacher: Who is this girl?
Alisabeth: What girl?
Teacher: The one singing?
Alisabeth: .......
Class: ROFL
Teacher: No seriously who is it?
Alisabeth: .....Justin Bieber -_____-
Teacher: Really? He sounds like a girl!
Teacher: I thought that was like,Katy Perrys sister or something.
Alisabeth: *Depressed look* *FaceDesk*
Class: Still ROFLing
Haha I laughed really hard!
|
|
|
This Obviously Translates Into |
Posted by: Ming-Yan - 05-11-2011, 02:35 AM - Forum: General Discussion
- Replies (8)
|
 |
Get a life...
"we are good friends, its just Jacob, dude you need to stop commenting on my things. Everytime i have a status update or something, you comment on it, you comment one every, freaking activity. and you're a good person. i know that, but you need to go off of Facebook for a while, and socialize man! come one theres a whole world out there! Go and explore, and do something other than spend your time on the computer everyday. you're cool, and you're my friend, but go do something else, thats fun.. "
|
|
|
One Time When Alevtyna Still Had Facebook |
Posted by: Ming-Yan - 05-11-2011, 02:19 AM - Forum: General Discussion
- Replies (6)
|
 |
She asked me for the homework pages in math. This was due to online code she got from the teacher not working. Unfortunately, we are in different classes; she is in algebra 1 and I am in algebra 2. (She already knew this so I'm not sure why I would be asked).
Anyway, after continuously trying to see what was wrong with her code, I told her it might take a while. I finally raged with the stupid site after 15 minutes and hacked the PDF version of the whole book [using classified ways the means justify the end people].
In order to verify my findings, I confronted one of my other friends who was in algebra 1. It was the right book so I sent a message to Alevtyna asking
"Which pages were they so I can screen shot the pages for you."
After about 30 minutes she replied saying that she didn't need my help anymore. I raged for about 30 minutes.
|
|
|
PHP: Register Code! (My version) |
Posted by: Chaos - 05-10-2011, 11:38 PM - Forum: Scripting
- No Replies
|
 |
A simple register code without a connection from the database. Took FOREVER! This kinda stumped me on where to start...
<html>
<title>Registration</title>
<style type="text/css" media="screen">
.error { color: red; }
</style>
<h2>Registration Results</h2>
<?php
$okay = TRUE;
//Validate color
if ($_POST['color'] == 'red') {
print '<p style="color:red;">Red is your favorite color.</p>';
} elseif ($_POST['color'] == 'yellow') {
print '<p style="color:yellow;">Yellow is your favorite color.</p>';
} elseif ($_POST['color'] =='blue') {
print '<p style="color:blue;">Your favorite color is blue.</p>';
} elseif ($_POST['color'] =='green') {
print '<p style="color:green;">Your favorite color is green.</p>';
} elseif ($_POST['color'] =='purple') {
print '<p style="color:purple;">Your favorite color is purple.</p>';
} elseif ($_POST['color'] =='gray/white') {
print '<p style="color:gray;">Your favorite colors is gray/white</p>';
} else {
print '<p class="error">Please select your favorite color.</p>';
$okay = FALSE;
}
print '<p>You have entered your birthday as $birthday</p>';
//validate email address
if (empty($_POST['emial'])) {
print '<p class="error">Oops! Your forgot your email!</p>';
$okay = FALSE;
}
//error on password
if (empty($_POST['password'])) {
print '<p class="error">Oops! Your forgot your password!</p>';
$okay = FALSE;
}
if ($_POST['password'] != $_POST['confirm']) {
print '<p class="error">Your passwords do not match!</p>';
$okay = FALSE;
}
Here is the HTML/Form part:
<html>
<title>Register!</title>
<body>
<div><p>Please fill out this form to register:</div></p>
<form action="handle_reg.php" mehtod="post">
<p>Email: <input type="text" name="email" size="30" /></p>
<p>Password: <input type="password" name="password" size="30" /></p>
<p>Comfirm Password: <input type="password" name="confirm" size="20" /></p>
<p>Date Of Birth:
<select name="month">
<option value="">Month</option>
<option value="1">January</option>
<option value="2">Febuary</option>
<option value="3">March</option>
<option value="4">April</option>
<option value="5">May</option>
<option value="6">June</option>
<option value="7">July</option>
<option value="8">August</option>
<option value="9">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
<?php
for ($d = 1; $d <= 31; $d++) {
print "<option value=\"$d\">$d</option>\n";
}
?>
<input type="text" name="year" value="YYYY" size="4" /></p>
<p>Favorit Color:
<select name="color">
<option value="">Pick one</option>
<option value="yellow">Yellow</option>
<option value="red">Red</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="purple">Purple</option>
<option value="gray/white">Gray/White</option>
</select></p>
<input type="submit" name="submit" value="Register" />
</form>
</div>
</body>
</html>
|
|
|
PHP: A Cool Little Thing For a Site |
Posted by: Chaos - 05-10-2011, 11:33 PM - Forum: Scripting
- No Replies
|
 |
I wanted to code up something quick to learn some new functions on PHP. I came across the 'rand' function and this is what happened:
I know it's sloppy, I did this quick.
<html>
<body>
<?php //Random number generator WOOOO
//Generate the numbers
$n1 = rand (1, 99);
$n2 = rand (1, 99);
$n3 = rand (1, 99);
//Outcome
print "<p>Your Lucky numbers are...<br />
$n1<br />
$n2<br />
$n3</p>";
?>
</html>
|
|
|
|