Tagged Questions
0
votes
1answer
26 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), ...
-1
votes
2answers
49 views
MYSQL doesn't select next row [closed]
I'm trying to create a select-field with options, the options are stored in the database.
The table looks like this:
id option class
1 opt1 cl1
2 opt2 cl2
3 opt3 cl3
4 opt4 ...
0
votes
3answers
27 views
PHP - MySQL “next” - “previous” link with ordering
I have a table like this
id | name | image | ordering
------+-------------+------------+--------------
1 | name 1 | one.jpg | 5
...
0
votes
0answers
45 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( ...
0
votes
1answer
42 views
Simple SQL syntax error in fetchRow() Zend Framework
i got a simple instruction like this:
$db = Zend_Db_Table::getDefaultAdapter();
$select = $db->select();
$select
->from(array("b" => "barcos"))
->join(array("i" => ...
0
votes
1answer
28 views
Short code to get 2 values from one row with php pdo
Possibly stupid question, but can not find answer.
I need to get values from two columns of the same row.
And then set variables with each value.
Here I get one value from column Number and then ...
-1
votes
1answer
38 views
mysql_fetch_array() expect parameter 1
I tried to show some data from database with select option from the first page
but I got two error when the page tried to retrieve the data from database
the errors are
mysql_num_rows() expects ...
0
votes
2answers
37 views
How Do I Get A Value From MySQL Table - PHP
I am having a real hard time fetching a value from my sql database. My code is below and I am trying to display $balance, but when I echo it, it just shows "Array".
Here is an image of my database ...
0
votes
1answer
66 views
mysqli fetch_assoc only 1 result instead of all
if ($result = $db->query("SELECT * FROM tab WHERE ID = $id")) {
while($row = $result->fetch_assoc() ){
echo "ID:". $row['ID'];
echo "Product:" .$row['Product'];
... }
$result->close();
} else ...
0
votes
1answer
39 views
can't retrieve all rows from a table
I've tried the past hour to figure a way for the server to recognize if a user already owns a similar row in my MySQL DB
can any of your guys help me...
here is the code ive done by now
$nummer = ...
0
votes
2answers
45 views
error fetch array [closed]
I tried to fetch my all data using mysql_fetch_array with this code
while($row = mysql_fetch_array($sql)){
if($row_counter % 2){
$row_color="bgcolor='#FFFFFF'";
}else{
...
0
votes
1answer
27 views
delete mysql_array_fetch
I have the following code and the plan is to display the data from the database but allow for the administrator of the site to delete a row if a job is no longer available. I have put "Delete" where I ...
-1
votes
1answer
48 views
improper check of mysql result?
Why do I still get a
Warning: mysql_fetch_assoc() expects parameter 1 to be resource, string given in
when using the following function:?
public function getRowsWhere($table, $order_by, ...
-1
votes
4answers
68 views
Really annoying error in mysql code
I am currently getting the error:
Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\Project\core\functions\image.php on line 23
I have tried the ...
0
votes
0answers
178 views
JSON Call to MySQL Improperly Handling Variable
I'm trying to set-up open-source software called pushpool which is essentially a JSON rpc server and for some reason I keep receiving "mysql pwdb query failed at fetch" when attempting worker ...
0
votes
2answers
34 views
How to display all the values in the table
I am having trouble with the employment_table i have in the code bellow. I want the table to display ALL jobs that they have inserted into the table. Instead it only displays the latest one. The ...
0
votes
1answer
57 views
c++ mysql_fetch_field get varables name and type
I'm trying to insert in the vector the name and type of the variables in my table. the language i use is C++.
here is my code:
std::vector<std::string> parameters;
...
-1
votes
1answer
70 views
PHP printf function “supplied argument is not a valid MySQL result resource” [duplicate]
Hi I have the following code which works fine on one server but I get the following error on a free server I have used
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result ...
1
vote
1answer
37 views
PDO FETCH_INTO - only map existing properties
I'd like to know if there's a fetch method in PHP that will only map existing properties in the class?
For example if my class looks like this:
class Company {
public $id;
}
And my query like ...
1
vote
2answers
50 views
PHP MySQL query outputs only a two-element array
I just made a quick little script with SQL query.
Now when I go to phpmyadmin and execute
SELECT name FROM players WHERE online='1' ORDER BY name ASC
It outputs the desired players ( 0TheMonk, ...
-2
votes
2answers
192 views
How to create a dictionary using PhP and MySQL? [closed]
How to fetch keywords (fields) and definition (records) in a MySQL database using PHP? Thank you.
-1
votes
2answers
24 views
result from mysql_fetch_array without row 0
i've got this here
while($row = mysql_fetch_array($result, MYSQL_ASSOC)){
echo "<li><a href='".$root_dir
.strtoupper(utf8_encode($row['country']))
."/ci"
...
0
votes
4answers
317 views
PHP PDO with foreach and fetch
The following codes:
<?php
$dbh = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);
try {
$dbh = new PDO("mysql:host=$hostname;dbname=$dbname", $username, $password);
...
0
votes
2answers
97 views
PHP MYSQL if statement on PDO result
Have a look through the code below. This is supposed to check whether or not a database contains a given user. If the it does, it just returns true. If it doesn't, then it returns false.
Anyway, ...
0
votes
0answers
12 views
MySQL: how to log fetchSize
I'm using Solr's DataImportHandler to index data from my MySQL database. There's a config option for fetchSize (which is passed via JDBC driver etc).
I'd like to be able to log MySQL operation such ...
0
votes
2answers
54 views
How to avoid using mysql_fetch_assoc twice
Current page uses the:
$row_rsMyData = mysql_fetch_assoc (rsMyData);
As part of the mysql query created by Dreamweaver.
Later on in the page I'm using:
while ($row_rsMyData = ...
0
votes
0answers
59 views
fetch data from mysql and generate xml and load the same in common template?
i am using this code !
data in db
book name,author name
<?
02 header('Content-type: text/xml');
03
04 mysql_connect('localhost','root','admin');
05 mysql_select_db('test');
06
07 $sql ...
1
vote
1answer
638 views
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error' in
I have this function and it keeps giving out the error "Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error' in..." The error is directing me to the line "$row ...
0
votes
1answer
141 views
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in [duplicate]
Hi I'm getting this error, sql query is Ok, here is my code.
$query = "INSERT into members ...
0
votes
1answer
97 views
SQL SUM function using PHP [duplicate]
I'm trying to calculate the combined total of the "capacity" column in the "stages" table of my database. This is the code I'm using:
$result = mysql_query('SELECT SUM(capacity) AS total_capacity ...
1
vote
1answer
82 views
mysqli_fetch_assoc returns duplicate data
There are very similar questions here, but after a lot of searching and trying different things, I'm still stuck.
When using mysqli_fetch_assoc() to populate an array, each row is being added twice.
...
2
votes
1answer
68 views
Why can not I fetch data from mysql db table with mysqli_query?
I am at prototype stage so I have error_reporting(-1); at my 1st row. Despite this, I have no php error but php prints 'could not get data'.
As I understood from php.net manual and stackoverflow ...
0
votes
0answers
107 views
Making questions and answer in PHP which can be edited manually
I am trying to make a system that you can create/edit multiple choice questions along with answers. Now what I have is a table for questions and a table for answers, a field in the answers table code:
...
0
votes
3answers
48 views
Fetching SQL records
Ah, I wrote a script, but I forgot already how to fetch MySQL records... so... I get problem with this
RESOURCE id#X
$QUERY = "SELECT id FROM WORKING TABLE VARIABLE WHERE username='WORKING USERNAME ...
-1
votes
4answers
677 views
Retrieve data from mysql using php
i am doing one project using php. i want retrieve data from mysql table order by payment plan1,plan2,plan3,Free using php. how??
0
votes
2answers
62 views
Continue MYSQL output in PHP
I have a select on a database, like this:
$result = mysql_query("
SELECT dat_eb_registrants.id, dat_eb_registrants.first_name,
dat_eb_registrants.last_name, ...
0
votes
3answers
223 views
How to fetch 2 times in MYSQL PDO without FETCHALL
I have this sample query:
$STH = $DBH->query("SELECT id FROM table");
I want to get the first row and then loop and display all rows. So I use the following to get the first row:
...
0
votes
2answers
92 views
How to fetch MYSQL data as hyperlink?
On my site, people can link to topics with buttons I made. Those buttons are putting out a (look: http://....) or (look: (link without http://) on the textarea and when they submit it, the hyperlink ...
0
votes
0answers
212 views
hibernate not doing a eager fetch (using fetch=“join” and lazy=“false”)
I want to do a eager fetch in my webapplication.I have following in my mapping file
<many-to-one name="user" class="com.xyz.beans.User" fetch="join" lazy="false">
<column ...
1
vote
1answer
128 views
Query to database and display
I use CodeIgniter 2.1.3, PHP and MySQL.
Hello, I want to display data from database. Always I display by foreach($results as $data), but now I want do display all data in few step. Display first ...
2
votes
3answers
495 views
Fetch only one row in PHP/MySQL [duplicate]
Possible Duplicate:
mysql_fetch_array() expects parameter 1 to be resource, boolean given in select
simple question here.
I have a SELECT query
SELECT FROM friendzone WHERE ID = ...
0
votes
1answer
253 views
Want to display x3 DIV's in the same row from MYSQL data fetched with PHP
My PHP grabs data from MySQL and display's it in a container div in my index.php with no problem. However, the data is displayed one after another (different rows) rather than using the space ...
0
votes
3answers
46 views
mysql_fetch_array() and output in chunks
So I have a table with 45 records (but can be dynamic) and I use mysql_fetch_array() to get the data from the database. What is the best way to output 5 records at a time? So I need to do record 1-5, ...
0
votes
4answers
154 views
mysql data table how while fetching record count plus one for field name
I have this code here:
while ($record = mysql_fetch_array($itemavailablequeryres))
{
echo "
<tr>
<td>$record['itemid']</td>
<td>$record['code']</td>
...
1
vote
1answer
156 views
Mysql FETCH CURSOR result ununderstood
I've been Googleing around for a while and I am sure that the problem is that I don't understand clearly how CURSORs in MySQL work.
A short explanation of the problem: I'm writing such function ...
0
votes
1answer
173 views
Pre-select Select or Mult-Select options from the existing ones instead of adding and selecting a new option
This code retrieves and displays the customer's account information from the database and pre-selects the values matching their information.
The problem is that instead of selecting from amongst ...
-1
votes
2answers
64 views
mysql complex fetch names [closed]
I have this sample data;
Table Products
PID PRODUCT NAME QTTY
1 PHONE 3
2 M & B NOVEL 5
3 HEADSET ...
1
vote
3answers
247 views
Use fetched data twice in PHP and MySQL with PDO
I'm writing an accounting system with PHP and MySQL and using PDO for working with database. In the payment page, I must have 2 drop down lists from defined accounts.
At the first, I've used a simple ...
-4
votes
3answers
502 views
Warning: mysql_fetch_array() expects parameter 1 to be resource, null given in [closed]
I'm new to MySQL coding.
I have this simple mysql_fetch_array here but it doesn't seem to be working for some reason it always comes up with this error
"Warning: mysql_fetch_array() expects parameter ...
0
votes
1answer
41 views
How to edit this plugin to display post count bigger 1 at online today and online now - MYBB onlinetoday
I am using this plugin
http://mods.mybb.com/download/online-today-1.2.2
the below part is query
$queries[] = $db->simple_select(
"users u LEFT JOIN ".TABLE_PREFIX."sessions s ON ...



