Jump to content
xisto Community

szupie

Members
  • Content Count

    826
  • Joined

  • Last visited

Posts posted by szupie


  1. PHP is a scripting language, like html. If you have programmed with mIRC, javascript, C or C++, etc., you should be able to learn it easily. PHP is much more advanced than html, and can interact with databases, so you can make stuff like member databases like this site. Go on google to find some php tutorials.


  2. Do you know PHP? It's a great programming language, and I assume you know it since you didn't mention scripting in your post.

    SQL stands for Standard Query Language (I think ;) ), it's used to manipulate things in a database. There are many kinds of databases that use this standard language, like mySQL, PostgreSQL, SQLite, etc.

    That's all I know about SQL, and I think that's all I need to know. ;)


    Oh, read this topic here.


  3. I know how to do it, it's mainly using the php include function, or anything similar. I have tried to make a page of my own to do that, but I couldn't get the images working right. I have found a website called sneak2, and it's working pretty good, some bugs here and there, and a little down time. I can't use a computer this semester though, so I wouldn't need it anymore.


  4. I was trying to figure out how to make random texts for random passwords and stuff, and I found someone who created this code.

    <?
    //author: polmme

    $codelenght = 10;
    while($newcode_length < $codelenght) {
    $x=1;
    $y=3;
    $part = rand($x,$y);
    if($part==1){$a=48;$b=57;}  // Numbers
    if($part==2){$a=65;$b=90;}  // UpperCase
    if($part==3){$a=97;$b=122;} // LowerCase
    $code_part=chr(rand($a,$;));
    $newcode_length = $newcode_length + 1;
    $newcode = $newcode.$code_part;
    }
    echo $newcode;
    ?>


    I think it's pretty good. If anyone has a better one or suggestions, please tell me.

  5. OK, first of all don't double post. More importantly, don't triple post. Even more important, don't quadriple post. The most important: don't <word for 5 times> and hex-post. Edit your first post if no one replied, and only if someone replied, you can post again.Anyway, .... Well, those jokes are great, and I can't come up with one...

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | 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.