Jump to content

ShiloVir

Members
  • Posts

    63
  • Joined

  • Last visited

    Never

About ShiloVir

  • Birthday 03/06/1992

Contact Methods

  • Website URL
    http://24.76.182.99/

Profile Information

  • Gender
    Male
  • Location
    Error 404. Location Not Found! (Winnipeg)

ShiloVir's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. <?php echo "<img src='phpthumb/phpThumb.php?src=screens/upload.php?show=".rand(11,14)."' alt=''>"; ?> Perhaps...? EDIT: I tested it on my server to find this does work. Enjoy...
  2. http://www.phpfreaks.com/forums/index.php/topic,37442.0.html Theres a big stickie on this subject. Basicall header(); Must come before anything else.
  3. okay. The beta for my login is over. All teh bugs are fixed... I think.. and so im marking this as solved. Ill get u guys back for the next beta I need tested. Thanks alot.... Darkfreaks.
  4. I discovered a new bug. You can press the "Login" button without entering any information and it will automatically log you in.
  5. Okay. I tried breaking it again with no sucess. Very good work fixing the bug. I couldnt access the admin panel myself. Altho when u post a message you shouldnt have the option to choose a name because anyone can wrote "Admin" under the name field and make it look like you are the one posting the message.
  6. Im really sorry about that dude. Just clear the MySQL table and you should be fine. Thats what u get when u ask people to test out your site. lol. But seriously. u gotta disable HTML from that site dude.
  7. Sorry, did I break your site? http://www.mzbservices.com/show_post.php?id=46
  8. print and echo are same things. But Print is a function. So it can be used in things like" <?php if(file_exists("require/blablabla.php")){ include("require/blablabla.php") or print ("Zomg00sh. I Screwed up. The file isnt here!"); } ?> while on the other hand. Echo wouldnt work because it isnt a function. The following code will not work: <?php if(file_exists("require/blablabla.php")){ include("require/blablabla.php") or echo "Zomg00sh. I Screwed up. The file isnt here!"; } ?>
  9. or to make things really complicated. wouldnt this not work? <?php // Function: function nls2p($str) { return str_replace('<p></p>', '', '<p>' . preg_replace('#([\r\n]\s*?[\r\n]){2,}#', '</p>$0<p>', $str) . '</p>'); } // In Context: <?php echo nl2br(nls2p("Paragraph1\n\nParagraph2\n line1\n line2\n")); ?> ?>
  10. The website is down. Error 404 >.<
  11. Files for internet are "/" while files on a server are "\" If your trying to get all on the server try "\"
  12. im sorry. But looking at this script it is very unsecure. It looks like a 5 year old wrote it. I would strongly advise you NOT to upload this to your webserver because if you do people will start uploading random garbage and even upload stuff that has the exec(); function in it and they will start to mess up your server. Just a warning...
  13. PAGE1.PHP: <?php session_start(); $_SESSION["var"] = 'hello world'; ?> PAGE2.PHP <?php session_start(); echo $_SESSION["var"]; ?> I dont understand why its not being passed??? Double check u got session_start(); at top of each page with the session data.
  14. Exactly how many times did you get timebanned?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.