Be a Supporter!
Response to: A list of strange sites.. Posted May 1st, 2004 in General

STRANGEST SITE EVER

http://www.shayesaintjohn.com

I LAUGHED I CRIED I PUKED ON MY PANTS

Response to: My portal! Posted April 25th, 2004 in Programming

mines named the bowl lol

Response to: My portal! Posted April 24th, 2004 in Programming

i have also made my own portal me and captain olimar have built a whole site although we use two big hacks for vbulletin we coded everything else..bitching about a 15 year old kid is bullshit...thats like saying every search engine ripped off of one another(w/o yahoo we might not have ever had google w/o yahoo no lycos or w/e order they were made in), thats the point of an idea so people can fine tune and refine it, so who cares if he did or not its better than those punks(i used to be one) who would make a post that said HEY HOW DO YOU MAKE A PORTAL?!?! well i learned and me and captain olimar made one along with an entire site , what wrong with building an idea off of someone elses? nothing!! so clam down and congrats trash it looks good

http://www.thecerealkiller.com

Response to: php help Posted April 22nd, 2004 in Programming

heres the most rcent code i have

<html>
<head>
<title>Registration:<?php echo "$failure"; ?></title>
</head>

<?php

include('http://www.devhev.com/db.php');
$result = mysql_query("SELECT password FROM $main WHERE username='$requiredusername'"); //get user password
if ($result)
{
while ($array = mysql_fetch_row($result)) {
if ($pass=="") {$pass=$array[0];} // only define PWD when the database does not return a empty value
}
}
if ($pass!=""){die("Username already taken.");}

else
{ //else insert a new user

$result = mysql_query("INSERT INTO $main SET
name='$requiredname',
username='$requiredusername',
email='$requiredemail',
pass='$requiredpass',
age='$requiredage',
gender='$gender',
aim='$aim',
msn='$msn',
yahoo='$yahoo',
location='$loacation',
website='$website'") or die("System error, can not create user, please try again later");
}

if ($requiredname=="") { die("No Name specified"); }

if ($requiredusername=="") { die("No USER-Name specified"); }

if (!eregi('^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$',$requiredemail)) { die("The Email Adress You Submitted Is Not A Valid Email Account"); }

if (!eregi('.',$requiredpassword)) { die("No password specified, Please Pick A Password"); }

if ($requiredage<13) { die("Age not valid Please Go Back, You Must Be At Least 13 To Access Whole Site"); }

$result = mysql_query("INSERT INTO $main SET aim='test'");
echo mysql_error();
?>
</body>

</html>

Response to: php help Posted April 21st, 2004 in Programming

and maybe this info will help

this is the join.html

<form name="join" onSubmit="return checkrequired(this)" method="POST" action="/member/join.php">
stuff added here

<input type="text" name="requiredname"><p>
<input type="text" name="requiredusername"><p>
<input type="text" name="requiredemail"><p>
<input type="text" name="requiredpass"><p>
<input type="text" name="requiredage"><p>
<input type="text" name="gender"><p>
<input type="text" name="aim"><p>
<input type="text" name="msn"><p>
<input type="text" name="yahoo"><p>
<input type="text" name="location"><p>
<input type="text" name="website"><p>
<p>
<input type="submit" name="Submit" value="Submit">

my sql table is called devhev_user and the table in it is called mainname varchar(250) Yes NULL
username varchar(250) Yes NULL
pass varchar(250) Yes NULL
email varchar(250) Yes NULL
age char(2) Yes NULL
gender varchar(6) Yes NULL
aim varchar(100) Yes NULL
msn varchar(150) Yes NULL
yahoo varchar(150) Yes NULL
location varchar(150) Yes NULL
website varchar(250) Yes NULL

Response to: php help Posted April 21st, 2004 in Programming

<html>
<head>
<title>Registration:<?php echo "$failure"; ?></title>
</head>

<?php

include('http://www.thecerealkiller.com/db.php');
$result = mysql_query("SELECT password FROM $main WHERE username='$requiredusername'"); //get user password
if ($result)
{
while ($array = mysql_fetch_row($result)) //read stuff one by one from getting all info
{
if ($pass=="") {$pass=$array[0];} //asign easy names to array-list
// only define PWD when the database does not return a empty value
}
}
if ($pass!=""){die("Username already taken.");}

else
{ //else insert a new user

$result = mysql_query("INSERT INTO $main SET
name='$name', pass='$pass',
name='$requiredname',
username='$requiredusername',
email='$requiredemail',
pass='$requiredpass',
age='$requiredage',
gender='$gender',
aim='$aim',
msn='$msn',
yahoo='$yahoo',
location='$loacation',
website='$website'");
if (!$result) {die("System error, can not create user, please try again later");}
}

if ($requiredname=="") { die("No Name specified"); }

if ($requiredusername=="") { die("No USER-Name specified"); }

if (!eregi('^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$',$requiredemail)) { die("The Email Adress You Submitted Is Not A Valid Email Account"); }

if (!eregi('.',$requiredpassword)) { die("No password specified, Please Pick A Password"); }

if ($requiredage<13) { die("Age not valid Please Go Back, You Must Be At Least 13 To Access Whole Site"); }

$result = mysql_query("INSERT INTO $main SET aim='test'");
echo mysql_error();
?>
</body>

</html>

sorry bout the double post im retarded anyway it keeps saying now system canno create user

Response to: php help Posted April 21st, 2004 in Programming

<html>
<head>
<title>Registration:<?php echo "$failure"; ?></title>
</head>

<?php

include('http://www.thecerealkiller.com/db.php');
$result = mysql_query("SELECT password FROM $main WHERE username='$requiredusername'"); //get user password
if ($result)
{
while ($array = mysql_fetch_row($result)) {
if ($pass=="") {$pass=$array[0];} }
}
if ($pass!=""){die("Username already taken.");}

else
{ //else insert a new user

$result = mysql_query("INSERT INTO $main SET
name='$name', pass='$pass',
name='$requiredname',
username='$requiredusername',
email='$requiredemail',
pass='$requiredpass',
age='$requiredage',
gender='$gender',
aim='$aim',
msn='$msn',
yahoo='$yahoo',
location='$loacation',
website='$website'");
if (!$result) {die("System error, can not create user, please try again later");}
}

if ($requiredname=="") { die("No Name specified"); }

if ($requiredusername=="") { die("No USER-Name specified"); }

if (!eregi('^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$',$requiredemail)) { die("The Email Adress You Submitted Is Not A Valid Email Account"); }

if (!eregi('.',$requiredpassword)) { die("No password specified, Please Pick A Password"); }

if ($requiredage<13) { die("Age not valid Please Go Back, You Must Be At Least 13 To Access Whole Site"); }

$result = mysql_query("INSERT INTO $main SET aim='test'");
echo mysql_error();
?>
</body>

</html>

Response to: php help Posted April 21st, 2004 in Programming

i fixed that ealier my bad but it still says line 23

php help Posted April 21st, 2004 in Programming

<html>
<head>
<title>Registration:<?php echo "$failure"; ?></title>
</head>

<?php

include('/db.php');
$result = mysql_query("SELECT password FROM $main WHERE username='$requiredusername'"); //get user password
if ($result)
{
while ($array = mysql_fetch_row($result)) {
if ($pass=="") {$pass=$array[0];}
}
}
if ($pass!=""){die("Username already taken.");}

else
{ //else insert a new user

$result = mysql_query("INSERT INTO $main SET name='$name', pass='$pass', $result = mysql_query("INSERT INTO $main SET
name='$requiredname',
username='$requiredusername',
email='$requiredemail',
pass='$requiredpass',
age='$requiredage',
gender='$gender',
aim='$aim',
msn='$msn',
yahoo='$yahoo',
location='$loacation',
website='$website'");");
if (!$result) {die("System error, can not create user, please try again later");}
}

if ($requiredname=="") { die("No Name specified"); }

if ($requiredusername=="") { die("No USER-Name specified"); }

if (!eregi('^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$',$requiredemail)) { die("The Email Adress You Submitted Is Not A Valid Email Account"); }

if (!eregi('.',$requiredpassword)) { die("No password specified, Please Pick A Password"); }

if ($requiredage<13) { die("Age not valid Please Go Back, You Must Be At Least 13 To Access Whole Site"); }

$result = mysql_query("INSERT INTO $main SET aim='test'");
echo mysql_error();
?>
</body>

</html>

i keep getting a parse error on line 23 any help?

this checks the info submitted by someone and this is where the use rgets added to the databse and everything

Response to: Home page Messed up? Posted April 17th, 2004 in General

I REALLY HATE THIS MAYBE RESEARCH YOUR POST A BIT B$ YOU MAKE A STUPID RAMBLE YOU PIECES OF SHIT

Response to: How Come You Cant Post Outwar Anywh Posted April 17th, 2004 in General

At 4/17/04 04:32 PM, Little_Inuyasha wrote: I have a outwar account and i dont know why we cant its a great way to get poiints i meen talk about realling in cash

why r u such a fuckin faggot?

you stupid peice of shit

Response to: My site's programming. Posted April 17th, 2004 in Programming

ill make you a layout and do alot of coing for a price...what do you want

Response to: haha damn no gfx design forum Posted April 17th, 2004 in Programming

At 4/17/04 12:37 PM, PhoenixJ wrote: Looks good to me. I found that if you put a grid over anything blue it'll look good : )

haha your so right ! it doesnt look too much like ng mag?

haha damn no gfx design forum Posted April 17th, 2004 in Programming

so who likes my design for my review site....it has a very uncanny resemblance to ngmag...lol thats why i scrapped it....but what do u guys think?

http://www.thecerealkiller.com/review/

Response to: -In terms of web design... Posted April 17th, 2004 in Programming

ok i think in terms of design i say

http://www.wa007.com

my fav design site by far

but my fav website in general is prob newgrounds or yaxay

Response to: My site's programming. Posted April 17th, 2004 in Programming

At 4/16/04 09:37 AM, Pilot-Doofy wrote:
Also, does anyone know how or could help me make a portal so people could submit their own work and wouldn't have to email me tons of files a day?

o man soemone better code you a portal if your gettin tons of files a day....

Response to: - The Regular's Lounge Thread - Posted April 17th, 2004 in Programming

ive never really played around with any other lagnuage besides php,but i have done a couple of tuts on asp...but i prefer php...

do you think going off of tutorials really helps? i dont think so i learn better on my own, but it is nice to have an example to go off of

Response to: Panera Bread Aftermath Posted April 15th, 2004 in NG News

dude if i lived in philly i would have most def stopped by just bc i wanna see whats up and well...try and ttake you back to my place...we have a nice fireplace...ill put on a good movie...we can cuddle...you know the usual

Response to: HTML makes me want to cry! Posted April 14th, 2004 in Programming

if html makes you cry turn around and go home or stop now

Response to: Kill Bill, NGMag Posted April 14th, 2004 in NG News

1.sites pimp
2.kill bill and b-dock saints are easily my fav movies

3.i sent an email to you and wade, tom , for the writing posistions

buy kill bill!

Response to: New NG! (...again.) Posted April 13th, 2004 in General

At 4/13/04 11:59 AM, Chr0me wrote: I think stamper should start his own buisness he wud be super rich!

or he could work for me and ill give him 100 thats right 100 dollars to teach me the ways of the stamp.... the best thing i can come up with is my siggy and that wel...its not very good o well...the site looks great, i hate you newgrounds only because your better than me lol i love the alien hominid thing at the bottom keep up the great work peace

Response to: Chocks Away! Posted April 11th, 2004 in NG News

i just submitted my alpha and its so cool!!!

i feel like a little girl!!!!

http://newgrounds.com/ngmag/alphas/alpha/16

ahh i can hardly wait till we finish that game

but the pictures for every demo on my computer are extremly blurry....but that didnt happen on my friends or work computer...is this a problem any1 else is having?

Response to: isi : The new Waq Posted April 10th, 2004 in Programming

man maddox thats odd you have no persoanl info and your first post was defending someone....maybe maddox is...isi?

Response to: Chocks Away! Posted April 10th, 2004 in NG News

am i hearing ngmag.com?

i think that would be awesome an entire site just for that

Response to: Chocks Away! Posted April 10th, 2004 in NG News

At 4/10/04 01:12 PM, ParagonX9 wrote:
At 4/10/04 12:10 PM, thecerealkiller wrote: i used your audio in my game/movie domos war demo :) thanks i love your stuff
Yes, I've already played that one : D
It's so kool man!!! Gotta play the full version!!!
btw.. Tnx for using it!

o man my pleasure it went great with the game
the full one should be done in a month or so and i am adding it to NG alphas right now

Response to: Chocks Away! Posted April 10th, 2004 in NG News

At 4/10/04 11:49 AM, ParagonX9 wrote:
At 4/10/04 11:28 AM, KORTEX wrote: ...so they dont submit crap to the portal....
Well, Im not 100% against crap movies...
I mean, they usually make me laugh my ass off because they're
so crappy...

i used your audio in my game/movie domos war demo :) thanks i love your stuff

Response to: - The Regular's Lounge Thread - Posted April 10th, 2004 in Programming

At 4/10/04 11:14 AM, F-13 wrote: Can i join?
I know i haven't helped many people, but i am a programmer in PHP, ACTIONSCRIPT and a bit of Javascript.

if we have to join i def wanna join

Response to: books Posted April 10th, 2004 in Game Development

i found this one is this one any good?

http://www.amazon.com/exec/obi...8-5329568?v=glance&s=books

books Posted April 10th, 2004 in Game Development

name some good books for actionscript in flash mx

Response to: - The Regular's Lounge Thread - Posted April 10th, 2004 in Programming

am i a regular? :( o well