For starters, you should just use mysql_real_escape_string when inserting into the database – this will ensure that whatever you store is safely encoded, yet retains all of the original information. In terms of output, the key difference between htmlentities and htmlspecialchars is that htmlentities will convert all characters that have entities whereas htmlspecialchars will only convert <, >, …
Daily Archives: November 22, 2010
Execute a database backup query from PHP file
php mysql backup
Welcome to phpMyBackupPro Here on the offcial homepage you will find all informations about phpMyBackupPro (pMBP). phpMyBackup Pro is a very easy to use, free, web-based MySQL backup application, licensed under the GNU GPL. You can create scheduled backups, manage and restore them, download or email them and a lot more!
URL valid characters
uric = reserved | unreserved | escaped reserved = “;” | “/” | “?” | “:” | “@” | “&” | “=” | “+” | “$” | “,” unreserved = alphanum | mark mark = “-” | “_” | “.” | “!” | “~” | “*” | “‘” | “(” | “)” escaped = “%” …