Online Security, Safety, Tips, Compliance, Standard
Posts tagged MySQL
PHP PDO MySQL:Simple Example Connecting to MySQL with PDO Class
Dec 24th
by wiseleo I’ll demonstrate a simple example on how to connect to mysql using PHP’s PDO class. Just some of the benefits of PDO is that it’s fast and if you use the PDO::prepare() method it will prevent SQL injection attacks by calling the PDO::quote() method. The other pros is that there are several databases
Php Mysql in Web Development
Aug 19th
PHP/Mysql in Web Development PHP and MYSQL are two of the most popular open-source technologies that are ideal for quickly developing database-driven Web applications. PHP is a powerful server side scripting language designed to enable developers to create feature rich Web applications quickly and MySQL is a fast, reliable and robust database that integrates
Top the Ten Reasons for Learning Damn Small Linux – Number 5, Linux, Apache, and Mysql
Jul 19th
Linux and Windows share many characteristics. For example, most people have little interest in knowing how they work. These operating systems make the computer available for the applications that people want to apply; such as running an Internet server, browsing the Internet, creating and accessing data bases, writing programs, playing music, or, or, or. These
Linux, Apache, MySQL and Perl/PHP/Python (LAMP): Defining Open Source Web Platform
Jun 24th
For a long time advocates of open source have identified the open source market with Linux. Even web development services talk of Linux as synonymous to the open source market. Now a set of open source software programs has provided a common platform for open source developers to converge. Linux, Apache, MySQL and Perl (or
Php, Mysql and Asp.net in Web Hosting
Jun 7th
Choosing between LINUX web hosting and Windows web hosting is a daunting task. You should know the language of your website, before determining which platform or which type of server you need. Linux web hosting is best suitable for a simple HTML site or an ecommerce site or a site with any other programming-database feature
Protecting PHP and MySQL from SQL Injection
Oct 30th
1) NEGATIVE INPUT FILTERS The simplest way to prevent this sort of injection is to search the SQL string for semi-colons and double dashes, and remove them before passing the statement to the database. That’s easy in an adequate application language, for example in PHP: $protectedqry = str_replace( “–”, “”, str_replace( “;”, “”, $qry ));