You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'CNRHKick'

We found 2,401 matches.


<< < > >>

Viewing 1-30 of 2,401 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94581

1.

None

Topic: PHP Problemos

Posted: 11/19/09 05:55 PM

Forum: Programming

At 11/18/09 10:06 PM, gapern wrote: http://www.apachefriends.org/en/xampp.ht ml

Moving it didn't work.
I'm downloading xampp now. Someone told me you could just install php and it would work fine, I didn't think you needed anything else.


2.

None

Topic: PHP Problemos

Posted: 11/18/09 09:51 PM

Forum: Programming

At 11/18/09 08:09 PM, Jon-86 wrote: Try changing it to this:

Still doesn't work. It comes out to:

Here is your results
Your coolness score was '; if ($score <= 2){ echo 'You are not very cool!'; }else if ($score == 3){ echo 'Congratulations, a perfect score!'; }else{ echo 'Not bad, you scored average'; } echo '

'; ?>

I tried putting else in it:

if ($_POST['q1'] == 'yes')
	$score = $score + 1
		else
		$score = $score + 0;

But that didn't work either.


3.

None

Topic: A web design question.

Posted: 11/18/09 08:11 PM

Forum: Programming

I go to a technical high school, and there is a Graphic Arts shop, and I'm in the ITS shop(which handles web design also).
I know the Graphic Arts shop learns some web design, but not much.

Graphic Arts makes advertisements for businesses and logos for people and stuff like that, and they print everything they make with these large machines to print them in large quantities.


4.

None

Topic: PHP Problemos

Posted: 11/18/09 07:16 PM

Forum: Programming

At 11/18/09 01:11 AM, fourthfrench wrote: You are running this off of a web/virtual server with php like (xampp) correct?

No, I'm testing this all locally. I have PHP installed.

At 11/18/09 03:53 AM, hesselbom wrote: What exactly is the error? I didn't see you posting any error, just correct code. What is happening and what do you expect to happen?

Here's what happens: I fill out the quiz, I the button to continue to the page that should show-

Here is your results
Your coolness score was you are not very cool!

Something along those lines.
But instead it shows:

Here is your results
Your coolness score was ' . $score . '/5

'; if ($score <= 2) echo 'You are not very cool!'; else if ($score == 3) echo 'Congratulations, a perfect score!'; else echo 'Not bad, you scored average'; ?>

I'm not sure where I went wrong, I'm not totally familiar with PHP.


5.

None

Topic: PHP Problemos

Posted: 11/17/09 08:10 PM

Forum: Programming

Still didn't work.
I'll give the code in the code tag this time.

Index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form action="results.php" method="post">

<b>Question 1: Do you like working with your hands?</b><br />
<input type="radio" name="q1" value="yes" />Yes<br />
<input type="radio" name="q1" value="no" />No<br />

<b>Question 2: Do you like technology?</b><br />
<input type="radio" name="q2" value="yes" />Yes<br />
<input type="radio" name="q2" value="no"  />No<br />

<b>Question 3: Do you like wood?</b><br />
<input type="radio" name="q3" value="yes" />Yes<br />
<input type="radio" name="q3" value="no" />No<br />

<b>Question 4: Do you like stone?</b><br />
<input type="radio" name="q4" value="yes" />Yes<br />
<input type="radio" name="q4" value="no" />No<br />

<b>Question 5: Do you like outside?</b><br />
<input type="radio" name="q5" value="yes" />Yes<br />
<input type="radio" name="q5" value="no" />No<br />

<b>Question 6: Do you like hammering nails?</b><br />
<input type="radio" name="q6" value="yes" />Yes<br />
<input type="radio" name="q6" value="no" />No<br />

<input type="submit" value="Determine your shop" />

</form>
</body>
</html>

Results.php

<html>
<head>
<title>Your results</title>
<?php
$score = 0;
if ($_POST['q1'] == 'yes')
	$score = $score + 1;
if ($_POST['q2'] == 'yes')
	$score = $score + 1;
if ($_POST['q3'] == 'yes')
	$score = $score + 1;
if ($_POST['q4'] == 'yes')
	$score = $score + 1;
if ($_POST['q5'] == 'yes')
	$score = $score + 1;
if ($_POST['q6'] == 'yes')
	$score = $score + 1;
?> 
</head>
<body>
<h1>Here is your results</h1>

<?php
echo '<b>Your coolness score was ' . $score . '/5</b><br><br>';
	if ($score <= 2)
		echo 'You are not very cool!';
	else if ($score == 3)
		echo 'Congratulations, a perfect score!';
	else
		echo 'Not bad, you scored average';
?>
</body>
</html>

6.

None

Topic: PHP Problemos

Posted: 11/17/09 06:06 PM

Forum: Programming

Damn, the code got all screwed up because of Newgrounds use of html for post styling.


7.

None

Topic: PHP Problemos

Posted: 11/17/09 06:02 PM

Forum: Programming

Also, It's not really an error.
Instead of echoing what it's supposed to, it echos a bunch of code.
I got this php code off this site, it works fine on the site, but it doesn't work for me.


8.

None

Topic: PHP Problemos

Posted: 11/17/09 06:00 PM

Forum: Programming

I know HTML and CSS, I just started PHP today. I'm trying to make a quiz for my school, and I'm getting this error. I'm lost. Can someone tell me where I went wrong?
Index.html page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<form action="results.php" method="post">

Question 1: Do you like working with your hands?<br />
<input type="radio" name="q1" value="yes" />Yes<br />
<input type="radio" name="q1" value="no" />No<br />

Question 2: Do you like technology?<br />
<input type="radio" name="q2" value="yes" />Yes<br />
<input type="radio" name="q2" value="no" />No<br />

Question 3: Do you like wood?<br />
<input type="radio" name="q3" value="yes" />Yes<br />
<input type="radio" name="q3" value="no" />No<br />

Question 4: Do you like stone?<br />
<input type="radio" name="q4" value="yes" />Yes<br />
<input type="radio" name="q4" value="no" />No<br />

Question 5: Do you like outside?<br />
<input type="radio" name="q5" value="yes" />Yes<br />
<input type="radio" name="q5" value="no" />No<br />

Question 6: Do you like hammering nails?<br />
<input type="radio" name="q6" value="yes" />Yes<br />
<input type="radio" name="q6" value="no" />No<br />

<input type="submit" value="Determine your shop" />

</form>
</body>
</html>

Results.php Page
<html>
<head>
<title>Your results</title>
<?php
$score = 0;
if ($_POST['q1'] == 'yes')
$score = $score + 1;
if ($_POST['q2'] == 'yes')
$score = $score + 1;
if ($_POST['q3'] == 'yes')
$score = $score + 1;
if ($_POST['q4'] == 'yes')
$score = $score + 1;
if ($_POST['q5'] == 'yes')
$score = $score + 1;
if ($_POST['q6'] == 'yes')
$score = $score + 1;
?>
</head>
<body>
<h1>Here is your results</h1>

<?php
echo 'Your coolness score was ' . $score . '/5<br><br>';
if ($score <= 2)
echo 'You are not very cool!';
else if ($score == 3)
echo 'Congratulations, a perfect score!';
else
echo 'Not bad, you scored average';
?>
</body>
</html>


9.

None

Topic: Live Show

Posted: 05/02/09 04:22 PM

Forum: General

I haven't made a post in forever, and this post would be considered spam, but bear with me.
I am doing a live show right now at http://mogulus.com/utubegangsters/
It is for my youtube account, but nobody has shown up, because youtube is being lame.
So if you guys want to show up than go for it.

Live Show


10.

None

Topic: It's a Boy!

Posted: 03/28/09 03:50 PM

Forum: NG News

Name it "Utah" after JohnnyUtah


11.

None

Topic: Pi=1337?

Posted: 01/18/09 10:57 AM

Forum: General

Pi doesn't stop and it generate random numbers, it's bound to have 1337 in it at one point.


12.

None

Topic: Free stuff in boxes of cereal

Posted: 01/18/09 10:42 AM

Forum: General

They probably don't want the Chinese, Lead-based toys in food.


13.

None

Topic: Typing on NG

Posted: 01/18/09 10:39 AM

Forum: General

It's a secret.

shuduuup...

14.

None

Topic: Newgrounds will soon be taken over

Posted: 01/18/09 10:38 AM

Forum: General

At 1/18/09 10:25 AM, bamsebomsen wrote: Thought it was Boxxy at first.

Gawd no!


15.

None

Topic: So some dick broke my newFlipCamera

Posted: 01/03/09 10:45 AM

Forum: General

Put his phone number on the interwebs.


16.

None

Topic: thieves burned alive in nigeria

Posted: 01/03/09 10:43 AM

Forum: General

"Hey!"
"Sorry sir! I'm stealing your mighty cock, sir!"
"Give me back my mighty cock!"


17.

None

Topic: Inherent fear of swimming...

Posted: 01/03/09 10:29 AM

Forum: General

Don't go in the water!
You're gonna drown!


18.

None

Topic: A kid actually named Sephiroth...

Posted: 01/03/09 10:14 AM

Forum: General

... I wanna name my kid Mario now.


19.

None

Topic: Pictures that get messed up.

Posted: 01/03/09 10:13 AM

Forum: General

It's the cup used in the popular filmography "2 Girls 1 Cup:


20.

None

Topic: What will you name your children?

Posted: 01/03/09 10:11 AM

Forum: General

I'd name him/her "Tranny"


21.

None

Topic: Moderators Never leave.

Posted: 01/03/09 10:09 AM

Forum: General

... do I scare you?


22.

Mad as Hell

Topic: Someone Stole My Car!

Posted: 12/31/08 07:04 PM

Forum: General

I went to 7-11 to pick up a pack of poptarts for the tomorrow, and some retard came out of nowhere and stole my car!
Why on Earth did I forget to lock my car!

After an hour the cops finally found my car in an empty field in the middle of no where!
They found it completely trashed; and all my albums, beer, money, and (most importantly) weed was gone! I wish this crook would puke his pants and rot in a hole!


23.

None

Topic: i don't like katy perry's music but

Posted: 12/27/08 04:28 PM

Forum: General

I can't agree more.


24.

None

Topic: Buying 360 on Ebay

Posted: 12/27/08 04:06 PM

Forum: Video Games

At 12/27/08 03:54 PM, wafflecake12 wrote: but more than likely you will get the xbox.

That helps. Thanks.


25.

None

Topic: Buying 360 on Ebay

Posted: 12/27/08 03:48 PM

Forum: Video Games

Is it a good idea? Has anyone done it?
I really want a 360, and I only have around $100 right now.
Used 360s are $150 at Gamestop, I could wait till I have that much money.
Or I could have a slight chance of either getting a good system or getting ripped off on ebay, for around $70.
This one I'm willing to bid on, because it comes with everything, the seller has 98% Positive feedback, and the seller seems to sell a lot of 360s because it's a company.

Smart or not-so-smart idea?


26.

None

Topic: Manliest Fear

Posted: 12/27/08 10:31 AM

Forum: General

I gots the vertigo.


27.

None

Topic: TomFulp Stole it from me

Posted: 12/27/08 10:02 AM

Forum: General

My doubting meter is going off the scale.


28.

None

Topic: Photoshop My Dog :d

Posted: 12/27/08 10:00 AM

Forum: General

Your dog hates it's life.

Photoshop My Dog :d


29.

None

Topic: Tell me what to do with CS4

Posted: 12/27/08 09:46 AM

Forum: General

Photoshop a baby eating a handgrenade.

GO

30.

None

Topic: My Top 30 Metal Bands of the 80s

Posted: 12/27/08 09:21 AM

Forum: General

"Bring back 80's speed metal"
http://namakajiri.net/pics/nonfree/angel .png


All times are Eastern Standard Time (GMT -5) | Current Time: 10:48 PM

<< < > >>

Viewing 1-30 of 2,401 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94581