Search Results

3
votes

How do you connect/retrieve data from a MYSQL database using objects in PHP?

Since version 5.1, PHP is shipped with the PDO driver, which gives a class for prepared statements. $dbh = new PDO("mysql:host=$hostname;dbname=$db", $username, $password); //connec …
1
vote

How to stop a PHP output buffer from going over the memory limit?

You should raise the memory limit before anything, especially if your only other solution is to go through a temporary file. There's all kinds of downsides to using temporary files (mainly, …