You should ditch mysqli and go with pdo, prepared statements are the way to go man it's cleaner and is more secure.
snip from my personal login:
<?php
if(isset($_POST['username'], $_POST['password'])){
$user1step = strip_tags($_POST['username']);
$pass2step = strip_tags($_POST['password'])...
Yes indeed, download the exe and run it. if you want the source, download it and run it through the terminal "python neptunex.py". Keep in mind if you wanna run the source you need python installed on your computer.
Valid points, i still love php as a language even though i'm bashing on it in...
it's honestly one of the easiest languages to pick up imo, it depends alot on indentation though, you can't just copy and paste stuff to your scripts like you would in php because php mostly reads from the {} things. Indentation errors usualy make you have to rewrite your whole script lol so...
Hell yeah man here's some references:
Offical python reference
pyqt gui reference
If you wanna start with python GUI's, go with this guy:
Oh, one last thing. If you're gonna get started with python start right from OOP don't do the regular way. object oriented code is much cleaner my man.
OOP...
you can change client text through the external variables though right? i remember something like that back when i did habbo. Maybe you could make php check what langauge they are and load the client variables for that language
but dude i'm uber leet. yeah that was supposed to be a joke i'm glad you noticed it haha
python is great man, i love how it reads..
compared to php you'll have like
if ($cock == true){
echo 'lol';
}
but in python it's much cleaner
if cock == true:
print 'lol'