Tagged Questions
0
votes
0answers
34 views
PHP & mySQLi - while mysqli_fetch_array not echoing result
trying to echo the rows. i dont get any errors, but it works if i do the second part.
<?php
$result = mysqli_query($db_connect, "SELECT * FROM items") or die ("Query is invalid." . ...
0
votes
3answers
259 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
1answer
53 views
mysqli_fetch_array starting the query on a certain row
I am trying to create pagination on some pages that display rows from a MySQL table. Each page displays six items from the table. I am using a while loop with:
$row_users = ...
0
votes
2answers
34 views
How to get “while else” type logic for fetch_array?
I have this code:
while($m = $movieResult->fetch_array(MYSQLI_ASSOC)){
// stuff happens here
}
return $stuff;
It works but What I really need is to detect when the while loop doesn't run ...
0
votes
0answers
150 views
Zend Framework Using fetch() statement in a loop, internal query doesn't work
I can't solve this one.
I have multiple while, and the one inside fetch only the first result and stop ...
Here is the code :
$categories is an array
array(18) {
[0] => array(7) {
...
0
votes
1answer
526 views
PDO get data from database
I started using PDO recently, earlier I was using just mysql..
Now I am trying to get all data from database.
$getUsers = $DBH->prepare("SELECT * FROM users ORDER BY id ASC");
...
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 ...
-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 ...
-1
votes
4answers
649 views
Fetch Value in reverse order using while loop
I have a code which retrieves the values from data base.but i want to fetch this values in reverse order.See this example
While($row=mysql_fetch_assoc($rs)){
echo $row['id']."<br>";//gives 1 ...
-2
votes
1answer
230 views
Implement a “universal” PHP (mysql) fetch row method (and assoc, and object)
After several attempts to find a unique solution for my thought, I've had no chances to post this question here in the hope to find someone who can enlight me (if applicable).
I'm working on a "full ...
0
votes
4answers
2k views
How do you insert multiple unique records into another table based off of individual rows in a starting table
How do you iterate through a table row by row, and insert entries based off of those individual rows, into another table in MSSQL?
2
votes
1answer
161 views
GM_xmlhttpRequest inside WHILE loop
I have a fairly simple task to replace specif texts on a page. Say, there are 10 DIVs, each of which containing a specific information. I want to check this information against a database, and replace ...
1
vote
1answer
614 views
Displaying variables in MATLAB workspace when using a WHILE loop
I wrote a script in which it retrieves data from a database and i have given the option to the user whether they would like to search again. @Andrey helped me fix the problem with the user answering ...
-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
3answers
1k views
while ($row=mysql_fetch_array($query)) is not working
What i try to do is check the user's Id by verifying in a cookie (called "identification").
thats my code:
if(!$noCookie) {
$sql = "SELECT * FROM `". TABLE_PREFIX ."_logged` WHERE `logged_cookie` = ...
0
votes
2answers
793 views
mysql_fetch_assoc() only works for one iteration in WHILE loop
Please consider the following:
$query = "SELECT legIDs FROM trip";
$result = mysql_query($query) or die("SELECT TRIPS ERROR: " . mysql_error());
while($row = mysql_fetch_assoc($result) or die("fetch ...
2
votes
1answer
780 views
Two mysql_fetch_array statements in
Is there any reason why I couldn't include two mysql_fetch_array statements working on two different mysql query results in one while loop?
The reason is I have two query results from a mysql ...
