1
vote
1answer
37 views

Creating an associative array from MySQL Query Results I receive only 15 values [closed]

This my code (below). Any array $zmin has only 15 records (values). Variable $n1 ($n1 = mysql_num_rows($result);) has more records (values). Is anything limit for this? $zmin$[] = ...
-2
votes
0answers
40 views

Getting the index of an element from array [closed]

I'd like to get the index of an element in array $images = parseXmlFileForTagName("Rambod_catalog.xml","Thumbnail"); function parseXmlFileForTagName($xmlFile, $tagName) { $doc = new DomDocument; ...
1
vote
3answers
26 views

Accessing information in array

Ok Im getting a bit confused with arrays in php. This is the code $search = "%" . $search ."%"; // Step 1: Establish a connection $db = new PDO("mysql:host=localhost;dbname=########", ...
0
votes
2answers
55 views

Displaying content with functions does not work properly

First of all: I know this is a very messy code and not the proper way to do this. But its first attempt to write a class and functions.. What i want it to do: Output all rows in the "articles" table, ...
0
votes
1answer
28 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 ...
0
votes
0answers
49 views

excel row fetch and populate table

is it possible to fetch entire row to another sheet if it meets the criteria? example: i have a sheet with expenses of different departments date description amount department ...
0
votes
0answers
74 views

How can i show subcategory when hovering on category - dropdown style - categories are taken from SQL

I am restating my problem since i was not so coherent: Purpose: when hovering on a main Category fetched in a list from a my sql table i want to show the subcategories using ul's and li's. All ...
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 ...
-1
votes
1answer
81 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
2answers
52 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, ...
-1
votes
2answers
26 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
2answers
69 views

PHP Add quote to array from fetch array

I get error : "Unknown column 'Array' in 'where clause'" perharps from variable $query in my code. This is my code : $zzz = mysql_query("SELECT alias FROM table WHERE ColumnA = 'yes'"); while($aaa = ...
0
votes
2answers
23 views

Change result of an array if it's blank

I'm using OpenGraph to parse some meta property datas from websites, like this: $v = 'http://url.com/'; $graph = OpenGraph::fetch($v); $image = $graph->image . "\n"; $title = $graph->title . ...
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
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
63 views

If a row is not unique - ignore it - php

I'm working on the following code: function form_Subcat_Picker() { $mysqli = new mysqli(DB_SERVER, DB_USER, DB_PASSWORD, DB_NAME); if (!$mysqli) { die('There was a problem connecting ...
1
vote
1answer
127 views

How to fetch and display an array using PDO?

I understand there are MANY ways to do all of this, but trying to do it the best way. I have created the db parameters, dns, dbh, sth, sql and generally quite happy with the result up to ... well ... ...
0
votes
3answers
632 views

fetch array php

I am working on fetching data from a table in PHP with the following code. How can I copy all rows directly into an array? I tried fetch_array() instead of fetch() but it was also not successful. ...
-1
votes
2answers
275 views

PHP create an array from mysqli query results [closed]

I have code that stores the results of a mysqli query in an array, but I want to make the code a little more advanced by only storing the results of one column in the array. Here's my code: // Create ...
0
votes
2answers
86 views

multiple rows from one table

Im trying to echo out two things from database, why wont this work? and how do i get this to work. Im just learning php so if this is a realy dumb question im sorry. $result = mysql_query("SELECT ...
0
votes
1answer
79 views

The second parameter of mysqli_fetch_array

I have code like this: mysqli_fetch_array($result) I do not seem to have any errors with this, but all samples that I have seen online have a second parameter like this: mysqli_fetch_array($result, ...
0
votes
3answers
48 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, ...
-4
votes
3answers
552 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 ...
1
vote
1answer
79 views

Array only returns last item, when using fetch

I am trying to return database result to an array. When using fetch it only returns the last item in the array. If I write $result[$this->topic] .= $a instead of $result[$this->topic] = $a, the array ...
2
votes
1answer
162 views

MySQLi: Fetch all from table, result has pass-by-reference

I'm having a problem using MySQLi, I want to create a function to return all users in the database as an Array. Here the code: public function getAll() { $statement = ...
1
vote
6answers
90 views

Fetch array function doubling values in each position of array?

I am getting strange behaviour from this function. Input public function fetch_array($result_set) { $rows = array(); while ($row = mysql_fetch_array($result_set)) { ...
-3
votes
2answers
499 views

MySQL Fetch Array Boolean error [duplicate]

This is my code <?php $result = mysql_query("SELECT * FROM post WHERE username = ".$username." ORDER BY ID DESC "); while($row = mysql_fetch_array($result)){ ?> <div ...
0
votes
1answer
173 views

php fetch array after mysql union

What is the problem of this mysql syntax? I copied it to phpmyadmin and it worked flawlessly. When I tried to fetch the array from php but it returned a "bool(false)" error. ( SELECT id, ...
0
votes
3answers
527 views

MySQL/PHP mysql_fetch_array() keeps missing first row

Good eve everyone! For some reason Database::fetchArray() is skipping the first $row of the query result set. It prints all rows properly, only keeps missing out the first one for some reason, I ...
0
votes
3answers
126 views

max(id) and limit 10, but use them in different places

I have two tables, posts and sections. I want to get the last 10 posts WHERE section = 1, but use the 10 results in different places. I make a function: function sectionposts($section_id){ ...
-1
votes
2answers
435 views

mysql_fetch_array while loop skipping first row in query

thanks in advance for the help with this. My problem is this, i have the following code (minus the database connect info and the table names are changed for security). i am stuck here so this is not ...
0
votes
4answers
205 views

php while loop error using mysql_fetch_array

I can't see the: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource Can anyone help as my code looks spot on: <?php //retreive questions from database and put ...
1
vote
2answers
346 views

PDO/PHP : Fetch Array and Prepared Statements

As you can see I'm trying to fetch rows from table while using prepared statements. $stmt = $conn->prepare("SELECT * FROM table ORDER BY date DESC LIMIT ?, 10"); $stmt->bindParam(1, $row_start, ...
1
vote
1answer
75 views

What changes the condition in loop: while (mysql_fetch_array($var))?

I'm a beginner C programmer. I recently started learning PHP and MySQL and encountered this interesting behavior with while loop: while ($pages = mysql_fetch_array($pages_set)) {statement} I ...
0
votes
1answer
87 views

Take object out of JSON Array

I'm trying to select a specific object in a JSON query. I have decoded it, and although I have spent a few hours searching for an answer, I am unable to determine one for this specific case. I would ...
0
votes
3answers
486 views

Fetch and store a column values from sqlite in android(java) array

I want to store the values of a particular column in the array, As I am a fresher I don't know how to do this. I am getting values from sqlite as 1 2 123 432 3 5 I want to store these values in ...
-1
votes
1answer
834 views

Assigning PHP Variable to MySQL Array

I know there is a simple answer but I can't seem to put this together. I am successfully pulling an array from a MySQL table in the following code, but I would like to assign individual PHP variables ...
0
votes
2answers
41 views

Fetch/ se if exists, identifier in array

How can I grab the identifier in an array? Like this example Array ( [6] => Stil [8] => Färg [7] => Material ) I want to fetch the 6, 8 and 7. To fetch "Stil", "Färg" and ...
-1
votes
1answer
2k views

returning an array in Mysqli prepared statement

I have function in my database class that returns the id of the people that are from the a specific country such as spain. But for some reason I only get one value, but there are many people with the ...
0
votes
1answer
395 views

Get Array From List Of Rows?

I was curious on how to get a list of rows and add values from each row to an array in Java. Here is what it looks like in PHP: <?php $result = mysql_query("SELECT * FROM names"); while($row = ...
-2
votes
1answer
211 views

Reverse mysql_fetch_array?

mysql_select_db("grozavco_gallery", $con); $result = mysql_query("SELECT * FROM Images"); while($row = mysql_fetch_array($result)) { echo '<div class="thumb" id="' . $row['ID'] . '"><a ...
1
vote
1answer
282 views

Converting array into multidimensional array in PHP when result is send from Oracle

Here is example how my array should look like: $library = array( 'book' => array( array( 'authorFirst' => 'Mark', 'authorLast' => 'Twain', ...
0
votes
2answers
107 views

Can I put an array inside a Mysql query?

I have an array : $arrayA = array(1, 2, 3, 4, 5); Can I put an array like putting a constant number inside a query? like this: SELECT id as 'ID', name as 'NAME', '1234' as 'Number' ...
-3
votes
3answers
2k views

$row = mysql_fetch_array($result)

I have the following code <?php $query = "SELECT matric_no,session, semester, course_name,test,exam, practical (test + exam + practical) AS total FROM main_table WHERE ...
1
vote
2answers
1k views

how to fetch this array using foreach loop

i have a multidimensional array. the array is returned by parsing xml using curl. when curl gave me the output i converted the output into array using $array = (array) simplexml_load_string($query); ...
0
votes
4answers
197 views

Insert comma before last three digits of a mysql_fetch_array result?

is it at all possible to do this? for instance if i had $row['price'] and the value of this was 15000 I would like it to show as 15,000 but I dont have a clue about how to go about this? thanks ...
-1
votes
1answer
759 views

Mysql Fetch Array

Im having some problems with mysql_fetch_array. It says: Warning: mysql_fetch_assoc() expects parameter 1 to be resource, string given in /home/yeyddhiw/public_html/v.php on line 49 And i cant ...
0
votes
3answers
68 views

Product ID is not being stored in the database

can anyone help? my code doesn't seem to store the value of product id here in my code have a look I am also getting the ID from another table <?php include("Connection.php"); $dTime = time(); ...
1
vote
5answers
217 views

How to use the result of mysql_fetch_array?

I'm using a while statement on this and I can echo each row fine i.e echo $row['myrow']; but what I want is to have the result put into a link like so: echo "<img ...
0
votes
0answers
161 views

Correct fetch while statement for changing mysql resource ID into an array for php?

This code produces every possible combination of things in an array when it works. Here is an original code that works http://www.sonyjose.in/blog/?p=62. I am getting the array from mysql instead of ...

1 2