Be a Supporter!
custom browsing Posted June 29th, 2008 in Programming

how would i make a button open up the window to browse shit on my computer without having to use the form element to do so?

Response to: screen recording Posted June 15th, 2008 in General

dont hve one

screen recording Posted June 15th, 2008 in General

hey i was just wondering what the best screen recording program to use is....well which free one is best.

Response to: virtual sub domains Posted March 16th, 2008 in Programming

i know what is used to do it i just need to know the code.

virtual sub domains Posted March 16th, 2008 in Programming

can anyone tell me how i can do something like the newgrounds profiles where they type in username.site.com and its actually www.site.com/profile?id=username without having to manually add them in.

Response to: Adding a ... (php) Posted February 1st, 2008 in Programming

i have titles that are too long and i need them to be shortened with ...

Adding a ... (php) Posted February 1st, 2008 in Programming

if a title is too long how would i go about taking off the last 3 characters of the allowed text and replacing them with ...

Response to: Crappy Ng-ripoff Site... Again! Posted January 30th, 2008 in General

we know that.....i own the site and i can admit that.....so state something less obvious

Response to: Crappy Ng-ripoff Site... Again! Posted January 30th, 2008 in General

First off its not a copy of newgrounds although it was inspired by newgrounds. I have been a long time fan of newgrounds and it might not happen but i want a site just as popular. Nothing that is there has been taken from newgrounds, and if you dont like the site just dont go to it.

Nuff said.

Response to: Flash Contest Posted January 30th, 2008 in Game Development

no no its brand new i have the same one thats all

Response to: Flash Contest Posted January 30th, 2008 in Game Development

its pretty good I have one myself its pressuer sensitive and all im going to post its specs on my site later tonite.

Flash Contest Posted January 30th, 2008 in Game Development

Hey uhhh i think this is the right place to put this topic now lol, but im having a contest on my site. Drop by check it out participate, submit it to both my site and Newgrounds.

http://www.toon-workshop.net/forums/topi c.php?id=1434

Flash Contest On My Site Posted January 30th, 2008 in General

Hey NG im having a flash contest on my site, drop by and check it out and submit your stuff to both my site and Newgrounds.

http://www.toon-workshop.net/forums/topi c.php?id=1434

Response to: Website account login system. Posted December 20th, 2007 in Programming

or go to the php section of www.pixel2life.com and they have many tutorials on how to make them.

Css Help Posted December 1st, 2007 in Programming

Im workin on a new layout for my site and I just cant seem to get a div to be in the right place. http://v2.toon-workshop.net is the layout. the div at the bottom needs to be up on the right side at the top of the left panel. I can usually get it to go there with ie but never in both ie and ff at the same time. Help please lol.

Response to: mod_rewrite? Posted December 1st, 2007 in Programming

anyone?

mod_rewrite? Posted December 1st, 2007 in Programming

I have user pages on my site and i was wondering how i would go about automaticly creating sub domains for them everytime someone signs up so that its thier username.site.com which will bring them to www.site.com/user/profile.php?id=whateve r number is associated with thier username in the DB.

Response to: Chick or dude? Posted December 1st, 2007 in General

its a chick....

Response to: would you rather... Posted December 1st, 2007 in General

amen!

Response to: Really funny christmas parody. Posted December 1st, 2007 in General

i could picture it but its still not all that funny....

Response to: Darkrpg Posted November 29th, 2007 in Game Development

nice i like it so far.

Response to: vaginas guys? Posted November 27th, 2007 in General

well then i think the main question here is do YOU know what a womans snatch looks like?

Response to: virus!!! Posted November 4th, 2007 in Programming

hahaha thats funny actually cuz after i posted to you about clicking the invisible button at the top my little brothers got the same virus on thier XP computer. But it was literally gone in 2 seconds.

Response to: CSS and div links. Posted November 3rd, 2007 in Programming

sorry guys none of those worked, making the link into a block only destroyed the table and put everything out of place and the javascript didnt help either.

Response to: virus!!! Posted November 3rd, 2007 in Programming

I had that same virus a very long time ago i was moving my mouse around the screen and somewhere near the top i found an invisible button, i clicked it and that background went away and so did the virus. Mabe it will work for you.

Response to: CSS and div links. Posted November 2nd, 2007 in Programming

thanks guys ill givem a try.

CSS and div links. Posted November 1st, 2007 in Programming

I put a link on a div and it works in firefox. But in internet explorer it doesnt. Is there any way to fix this? newgrounds does it.

Response to: Small Ajax For Ad Space Posted October 9th, 2007 in Programming

found someone thanks.

Small Ajax For Ad Space Posted October 9th, 2007 in Programming

I have an ad space that isnt being used right now www.toon-workshop.net/user/login.php and you can have it for a year if you can do a small ajax script for me. Add me on msn if interested and ill give you the details cc-chris-chase@hotmail.com

Image Uploading (php) Posted September 28th, 2007 in Programming

The code below isnt working for some reason and i just cant figure out why. Can someone figure it out?

if (isset($_FILES['ufile']['name'])) {
	$filename = basename($_FILES['ufile']['name']);
	$ext = substr($filename, strrpos($filename, '.') + 1);
	$ext = strtolower($ext);
	if ($ext == "jpg") {	
		if ($_FILES['ufile']['size'] > (1024*100)) {
			echo("File size is too big to upload.<br />");
			exit;
		} else {
			list($width, $height) = getimagesize("images/users/".$username.".jpg");
			if ($width > 150 || $width < 150 || $height > 150 || $height < 150) {
				echo ("Image is not 150px by 150px please change this.<br />");
				exit;
			} else {
				unlink ("images/users/".$username.".jpg");
				copy ($_FILES['ufile']['tmp_name'], "images/users/".$username.".jpg") or die ("Could not upload image. Try again.");
			}
		}
	} else {
		echo ("Image is not right file type please change this and reupload.<br />");
		exit;
	}
}