dont worry, im afraid to. now with this function, you cannot use any text other then those pre-defined ones. feel free to add more. now, if PDO looks confusing, which it does, and can get more confusing if your php.ini thing is out of date, you can use something like this (should work, and by that i mean i make my own functions to do stuff and i just pulled parts out to try and make a example):
"INSERT INTO `whatever` ( `data` ) VALUES ( 'aaabacad' )"
your database should be 100% free from any hacks. personally, im using this exact function. and i quit using PDO becuz no one confirms it being 100% safe and im probably going to involve money on my website someday and i want to make sure it is as safe as possible.
the downside:
- unless you put UTF-8 anything in the function, you wont have any. so no square blocks, etc
- your probably stuck with this forever, since your database is in codes.
but from the looks of it, i really do think this is in fact a 100% safe function to use. if its not, then that freaking sucks for me. but anyway, i know there are people who doesnt want to make accounts on their website becuz they are afraid of hackers, but using this, you shouldnt have to worry about anything. except, forgetting to add the function somewhere in your php of course.
personally i kind of like this better anyway. its alot shorter when i need to do anything like registering and stuff. but the main part is guaranteeing safety. and this one should work with almost any php version. not like that matters too much, anyway.
Well PDO and MySQLi are more secure in general than MySQL. Once you use prepare statements or in PDO use $pdo->quote() or MySQLi's equivalent and then use $pdo->query() Almost every host has 5.2+ and most people should have at least 5.1 which supports PDO and MySQLi
i remember there was something that you needed to do also for 5.3.something and lower.i think it was just turning eluminating prepares (or something like that) off. but anyway for me like i said, im most likely going to get money involved on my website. and my website ids a gaming website where you save your data online. so i made this function to ensure database problems at the max it should get. once i understand how exactly to use https im going to use that too.