Jump to content

Vinze

Members
  • Posts

    80
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Vinze's Achievements

Member

Member (2/5)

0

Reputation

  1. Suspending actually isn't enough - to actually prevent things like this from happening in the future, you'd have to remove all account information from your databases. Otherwise, the next hack will simply steal the data of our suspended accounts. Is that possible?
  2. You're not an idiot if you learn something new
  3. I know you should be able to do this in a better way, but I think this would work: $string = '000000001000000000100000000001000'; $length = strlen($string); $array = array(); for($i = 0; $i < $length; $i++) { $array[] = substr($string, $i, 1); }
  4. Perhaps you could use sessions? // This should be at the very beginning of your code, before anything is output session_start(); // Blabla lots of code $_SESSION['username'] = $_POST[username]; $_SESSION['password'] = $md5_password; // Now every page that calls session_start() at the beginning has $_SESSION set to these values echo "<meta http-equiv=refresh content=\"5;url=/\">"; print("your now being logged in!");
  5. Just a wild guess, but perhaps you placed <title> outside of the <head>?
  6. Of course not in this little example, but I suppose if it really is 5 times faster then it would be able to give it just that extra push when it's a big application. If there are multiple options, of course switch is preferred, but if there's just if and else, would it really be faster? As cooldude832 said,
  7. Hi, this article (page 2) says this: Is this really true? So when I have the following: <?php $something = true; if($something) { // Do something } else { // Do something else } ?> Should I instead use: <?php $something = true; switch($something) { case true: // Do something break; default: // Do something else } ?> It seems to be less efficient to me, and it is less easy to read, but if it really gives such a speed increase then I might consider using it when working on a big project...
  8. That program seems too complicated for me. And we've asked the ex of my mother, but he won't respond (he also still owes her a lot of money - no sign of that too )
  9. if you want to run linux of a USB later on, consider Slax Linux instead. Well, Xubuntu is my favourite distro, and as it's for fun that I'm putting Linux on the USB stick, I'll go with Xubuntu Well, I guess you're not supposed to be able to retrieve the admin password. However, the programs I linked to are able to retrieve or at least change that password, if only you can put them on a bootable floppy or burn them onto a CD.
  10. yeah that's a good point. but some distro's do all that for you i believe. but i'm talking about linux here and he is probably talking about windows in which case he would need to create the boot sector. what is the OS you are trying to get into vinze? XP? It's Windows XP. I know that USB sticks can be booted, but can they also boot a CD image? I guess the .iso would need to be extracted in some way or something, right? I was also planning to put Xubuntu on that USB stick after I had recovered the password for my mother, but if you also know of a way to retrieve that password with Xubuntu then that would be great too.
  11. Hey, the ex of my mother left without leaving us the admin password of her PC. Of course we'd like to retrieve this password so I've searched the internet a bit for programs that do this for us. I found this and this, but they both require you to make a bootable floppy or to burn a .iso onto a CD. Unfortunately, my mother does not have a floppy drive and we have no CD burner. Is it possible to put the CD image on a USB stick? Thanks in advance.
  12. It's not that much trouble, I just need to find the time
  13. Hmm, that's interesting. Once I get to work on it again I'll add that option, it's not that difficult. I'm aware of that, is also planned to be fixed
  14. Ah, right, that's why you can configure that in the downloaded version. Guess I should also do that for the online version. What exactly would you like to have different? You can already change indentation method (e.g. to four spaces) or put the opening accolades on a separate line.
×
×
  • 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.