523 Forum Posts by "Fallin-Again"
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?
hey i was just wondering what the best screen recording program to use is....well which free one is best.
i know what is used to do it i just need to know the code.
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.
i have titles that are too long and i need them to be shortened with ...
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 ...
we know that.....i own the site and i can admit that.....so state something less obvious
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.
no no its brand new i have the same one thats all
its pretty good I have one myself its pressuer sensitive and all im going to post its specs on my site later tonite.
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.
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.
or go to the php section of www.pixel2life.com and they have many tutorials on how to make them.
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.
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.
i could picture it but its still not all that funny....
well then i think the main question here is do YOU know what a womans snatch looks like?
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.
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.
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.
thanks guys ill givem a try.
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.
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
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;
}
}

