PDO (PHP Data Objects) is a database abstraction layer for PHP.

learn more… | top users | synonyms

0
votes
2answers
21 views

yii, can not bind parameter to CDbCommand

say, i am going to follow the good practice of avoiding sql injection. so this is not good: $query="SELECT id,tag FROM tbl_tags WHERE tag LIKE '%".$tag."%' ORDER BY creation_time DESC LIMIT ...
0
votes
2answers
39 views

JavaScript/AJAX is saying “undefined” when it should show a picture

On my register page, I am trying to set it up so that when somebody enters a username into the username box, it will either show a green check mark if the username doesn't exist, or a red 'X' if the ...
0
votes
2answers
33 views

Does using PDO in php use a lot of resources compared to a normal mysql connection?

Basically I was talking to a friend who critised me for using PDO over mysql methods. His argument is that using $dbh = new PDO(irreleventparams); forces you to get the full class and constants of ...
-1
votes
2answers
26 views

bCrypt fetch password from database ( PDO, PHP )

I'm currently switching from md5 to bcrypt and i'm able to set the bcrypt has into the database with the following code. public function User_Registration($_iPassword, $_iEmail, $_iUsername) { ...
3
votes
5answers
49 views

Using Php PDO Insert statement

Someone told me that when you are working with PDO, you cannot use "INSERT INTO .... SET" to insert data into database, because it will not work on databases other than MySQL. I'm not sure what ...
0
votes
1answer
38 views

How to use fetch in query() in PDO

How to fetch column directly in query()? Something like: $userID = _openConnection()->query('SELECT id FROM users WHERE login = "' . admin . '"', PDO::FETCH_COLUMN, 0); Instead of $userID = ...
0
votes
0answers
36 views

Php foreach loop concatenation

I am working on a script to loop over what check boxes a user clicks on, depending on which ones were clicked that will result in a "dynamic" query. I am trying to build a where statement with a array ...
-1
votes
2answers
16 views

Issue with show all users in the table with pdo

I have the next issue, when I need the code show me all the users in the table always show me one data the first one or the last one if I change the ASC to DESC inside of SELECT.. I need to show me ...
-1
votes
1answer
32 views

if statment to link to a hompage

hello I have done my first experimentation into PDO and I'm confused as of how an if statement to link to a homepage would work bear in mine that I am new to PDO I have looked for online example but ...
0
votes
2answers
18 views

Count execute()s successfully performed PDO php

I currently use a function within a class to insert data into a database, and if each row is successfully insert (from csv file) a message is logged (logMessage function), to show which row was or was ...
1
vote
0answers
38 views

SQL Server Periodic Fixed Delays

We are connecting to an SQL Server 2008 on another box using PHP 5.3 and pdo_dblib. Periodically (10+ times a day randomly throughout the day) we experience 3 minute periods where all SQL Select ...
0
votes
1answer
10 views

Get response using pdo sql?

I am trying to get the actual response (the data) from my database using prepared statements: $stmt=$dbconn->prepare("SELECT user_videos FROM public.account_recover_users WHERE user_mail= ...
-2
votes
1answer
71 views

Notice: Undefined variable:( PDO ) [closed]

I've been trying for over 5 hours to understand why my query doesn't return my database values, I've tested with a different query to return my _iD which equls my User ID and I am able to connect but ...
-1
votes
2answers
30 views

PDO: Using fetchAll on unknown query

I have a php class that I use to run SQL statements via PDO. The class stores the FetchAll's data to that query in a public variable But the problem is that I don't know what the query will be so I ...
1
vote
1answer
44 views

User Login not working, query issue ( PDO, MySQL, PHP )

I went on rampage of changing from the about to be deprecated MySQL, I'm currently starting with my user login system which I am unable to login after changing the querys and such. Here is what I've ...
0
votes
1answer
22 views

PDO Fetching Bcrypted password?

I have been a lot of troubles with my code since I first started learning something about hashing and salting passwords. First, I learn how to "hash" passwords with MD5 (Yeah, don't do that anymore), ...
0
votes
3answers
33 views

PHP - Accessing my user class from the whole app

I am currently writing a login script because I am trying to learn PDO using OOP. I have a index.php page which only contain a login form. Then I have a User class, it looks like this: <?php ...
-2
votes
2answers
45 views

PHP MYSQL PDO - function [closed]

I've got what seems like a zillionth question about the mysql & PDO. I've given myself a task on how to start using PDO instead of the old mysql* PHP functions. It's little difficult to explain ...
-2
votes
1answer
42 views

MySQL query to PDO

I'm switching from MySQL to PDO and I'm unsure if this query is correct.. would I still be required to write the if command. public function User_Login($_iUsername,$_iPassword) { ...
1
vote
1answer
56 views

Check if record exists in table, if so redirect

Im trying to see if a record exists in my table, if it does id like to redirect my user, if not, id like to insert a record. I have the following, my only problem is its inserting the same record ...
0
votes
3answers
56 views

2 mysql queries in PDO?

I'm trying to learn PDO and I've not come across this yet on any other sites, I have 2 queries... $query = mysql_query("INSERT INTO `users` (oauth_provider, oauth_uid, ...
0
votes
3answers
35 views

How to insert a row and ignore only UNIQUE contraint errors, without using SELECT

I have a table with a column that must have UNIQUE values (but it could be also a multiple-column UNIQUE index, the problem is the same). In my PHP script I have to insert a row in that table. I'm ...
0
votes
2answers
45 views

PHP PDO MySQL Not outputting result but rest of page loads?

Im trying to run a different query depending on the amount of results from the table. I have the following but it only outputs the text at the end, not the 'echo' data? Can anybody see what Im ...
-1
votes
5answers
61 views

OOP eficiency when usign class in another class

Afternoon, I have a class called DB (class.pdo.php) that does all the handling on mysql queries using PDO and another class called user that I use to manage a login system. My question relates to ...
2
votes
1answer
49 views

Can not update photo into a database using PDO

the code save the photo inside the folder in root, but in the database not save the rute into the photo...can you help me with this. here the form: <form class='form-horizontal' method='post' ...
0
votes
2answers
26 views

Scope of PDO used in a function

I am using a structure like the one below - class foo{ . . . function bar($colID){ try{ $dbo = new PDO(get_db_DSN(), get_db_USR(), ...
0
votes
1answer
34 views

Warning in PDOStatement: Invalid parameter number [closed]

Maybe you can help me with this part of my code. I tried to make it works, but when I try to UPDATE always show me this error: Warning: PDOStatement::execute() [pdostatement.execute]: ...
0
votes
1answer
20 views

PHP PDO Header redirect stopped working [duplicate]

I've built a site on my test server and now I'm putting it on a new server that will host my site. I'm using PDO for my connections and once the prepared statement executes I redirect back to the ...
-2
votes
1answer
35 views

MySQL query to PDO

I've been suggested to migrate from the deprecated MySQL to MySQLi or PDO, I finally got around to it as it'll help my project without wasting too much time. I've been reading a lot on some great ...
-1
votes
4answers
62 views

SQLSTATE[HY000]: General error with PHP and PDO

I have a little login script. function login($sql) { try { $fbhost = "localhost"; $fbname = "foodbank"; $fbusername = "root"; $fbpassword = ""; $DBH = new ...
0
votes
2answers
30 views

Run a call from a function PHP

i'm building an website using php and html, im used to receiving data from a database, aka Dynamic Website, i've build an CMS for my own use. Im trying to "simplify" the receiving process using php ...
1
vote
3answers
56 views

Storing most frequently used values in an array from database [closed]

What I'm basically trying to do is get the top 3 most frequent values from a column in my database, I have searched for a solution but couldn't find anything. I already have the code to get the most ...
0
votes
1answer
44 views

Selecting rows where ids are provided in a list [duplicate]

I want to get all the list of registered players from an array here is my function function UpdateContact() { try { $conn = $this->GetDBConnection(); ...
1
vote
1answer
14 views

MYSQL PHP PDO order of statements in a transaction

I am using InnoDB in MySQL and accessing the table from PHP with PDO. I need to lock the table, do a select and then, depending on the result of that either insert a row or not. Since I want to have ...
-1
votes
2answers
41 views

How to create a table dynamically php and sql [closed]

I want to create another table dynamically using another table result ? is it possible ?
-1
votes
1answer
61 views

PDO vs MySQL functions [closed]

I'm trying to rewrite some of the native mysql functions to convert to PDO functionality. However, I'm seeing a huge performance impact and my usual query now takes 2.8 seconds, up from 0.14 seconds ...
-4
votes
2answers
35 views

Convert result from PDO::fetchAll() to array like [closed]

I have a list of names from my database. I'm trying to convert the result from the PDO::fetchAll() function to get a result like a string: "name1","name2","name3" etc. I don't know if you know what ...
0
votes
2answers
34 views

PDO will only return first row of data set

This code displays the first row perfectly but no more. I have tried fetchAll() , and can get the correct number of rows to display, but only one column is populated per row, and the data values are ...
0
votes
1answer
68 views

Which method is more secure between MySQLi and PDO [closed]

So far, I'm seeing that both MySQLi and PDO are good methods when connecting to the database. What I need is which method is more secure between the two. Especially for a person developing a site for ...
0
votes
1answer
33 views

PHP Databases PDO connections

Hey guys im having a little trouble with the PDO in php as the error it is returning is an undefined index. The code for the function and query and return of result is this: function ...
0
votes
1answer
13 views

require pdo connection to database 2 questions

I have 2 questions, one is about security. So i have problem to calling database connection. I have to use database connection for menu to check session and change menu if user logged in. The problem ...
1
vote
2answers
33 views

how is it that PDO can have methods with typed string parameters, but I can't don this in my own functions?

If I create an instance of PDO and then call PDO->Quote('test') it works no problems. If I look at the defination of the PDO Quote method it looks like this: /** * Quotes a string for use in a ...
-1
votes
1answer
35 views

Catchable fatal error: Object of class PDOStatement could not be converted to string [closed]

Following is the php code to execute sql. But it fails with Catchable fatal error. And I have read the php manual PDOStatement, the sample code is such similar with the code I wrote. I can't figure ...
0
votes
1answer
22 views

Using SQL Server stored procedures with empty resultsets in PHP 5.4

I use PHP 5.4 with Microsofts 3.0 drivers to execute stored procedures in SQL server 2008. It works fine until I execute a procedure that isn't returning any result as it is just doing an update. The ...
0
votes
4answers
43 views

PHP PDO: Syntax error or access violation (Help) [duplicate]

I have problem with PDO and can't find the solution: My function: public static function create($position, $name, $mail, $mailtext, $confirmed, $key, $formid) { global $database; try { ...
0
votes
0answers
44 views

what's wrong with this simple fetch PDO statement?

What's wrong with this PDO code? It doesn't give me any results although there definitely are some results in the tip table in the database. try{ $this->pdo = new PDO( ...
3
votes
1answer
42 views

Mysql and php fixes to replicate PDO security

I understand that using PDO makes SQL injections virtually impossible. However, I don't have time at the moment to change all the database related code in our website. (Especially since I'm new at ...
-1
votes
1answer
32 views

Error on new server: PDO not found (supposed to be activated) [closed]

I just configured a cPanel server and transferred all my websites to it. Everything works fine except for a Symfony2 website. Here's the error: Fatal error: Class 'PDO' not found in ...
0
votes
2answers
53 views

Mysql update statement won't execute

Can somebody help me with this? When i'm trying to update my table nothing happens and I can't figure out what's wrong. I've tried different query's but not 1 worked. My code: ...
0
votes
1answer
11 views

PHP PDO transaction automatic rollBack

I am just refining some code on one of my applications which I converted from using PHP ADODB library to PDO lately. In adodb once you launched a transaction it automatically rolled back if any ...

1 2 3 4 5 103