|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-08-24 19:55 UTC] sjoerd@php.net
[2009-08-25 07:57 UTC] grzegorz at heex dot pl
[2009-09-18 08:39 UTC] uw@php.net
[2009-09-20 22:44 UTC] grzegorz at heex dot pl
[2009-09-22 13:53 UTC] uw@php.net
[2009-09-22 16:35 UTC] grzegorz at heex dot pl
[2009-09-22 17:00 UTC] uw@php.net
[2009-09-22 18:58 UTC] grzegorz at heex dot pl
[2009-11-04 17:11 UTC] uw@php.net
[2009-11-12 01:00 UTC] php-bugs at lists dot php dot net
[2009-12-22 13:02 UTC] grzegorz at heex dot pl
[2010-01-04 10:56 UTC] uw@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 02:00:01 2025 UTC |
Description: ------------ Now, PDO in PHP 5.3 is usless. Reproduce code: --------------- $name = 'same_name'; $pdo= new PDO("mysql:host=localhost;dbname=[base];",'[user]','[pass]'); $sth = $pdo->prepare("SELECT * FROM lng WHERE lng_name=:Name"); $sth->bindValue(':Name',$name,PDO::PARAM_STR); $sth->execute(); die('OK'); Expected result: ---------------- OK Actual result: -------------- PHP CGI / FastCGI crash