Tagged Questions
-2
votes
1answer
119 views
How do I check a mysqli database for a record meeting conditions and have it return false to PHP? [closed]
Assume a mysqli table named upload_history with no records. The table has the following columns...
"id" int(11) AUTO_INCREMENT indexed
"user" int(11)
"date" bigint(16)
"uploads" (text)
"session" ...
0
votes
3answers
60 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 ...
0
votes
1answer
170 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 ...
-4
votes
3answers
493 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
400 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
votes
1answer
51 views
how to change value in next option box as per the change in previous box php [closed]
I have two select boxes, and i've fetched value in those from database using php script . Now what i want is to change the value in second box as per the change in first box occurs
0
votes
4answers
136 views
Fetch values from mysql database between year_1 and year_2
Actually I want user to select two years and then I want to fetch those rows from the mysql database which come in between these selected years.
For example user select year_1= 2006 and year_2= 2009 ...
0
votes
1answer
180 views
How can i fetch (select then delete) from a database table?
I have a stream table (memory table), and a script which is inserting in this table (from 1 row/min to 100 rows/sec). I need to fetch 1000 rows every 5 seconds, i mean select top 1000 rows and then ...
0
votes
1answer
243 views
PDO fetch loop is returning an array of the same mysql table column names over and over instead of the data
I've been racking my brain on this one, searching all over the place and I cannot find an answer. I'm trying to pull the data from 2 columns of a 14x9 mysql db table and place it into an array. Sounds ...
4
votes
3answers
1k views
PHP/mySQL: mysql_query with SELECT, FROM, and WHERE
I am trying to set $nextPageID and $nextPageTitle with the following code. Unfortunately they are not getting set.
$pageCategoryID = 1;
$nextPageOrder = 2;
$fetchedNextPageData = mysql_query("
...
1
vote
1answer
181 views
Hibernate Syntax for using both fetch/select
I am having some trouble mixing and matching fetches and selects using hibernate.
Basically, I am listing a bunch of users in a user table which also contains a "createdBy" column which references the ...
0
votes
4answers
43 views
MySQL many 'and' statements
I have this statement wich is the wrong way to do it but how would I get the statement to work (the result of the statement needs to hold all the AND in it)
SELECT a.username, a.first_name, ...
1
vote
1answer
2k views
Lazy loading doesn't work - jpa
Hy all,
I have three tables Child, Pet and Toy. Pet has a reference key the child id, and a toy has a reference key to a dog id.
I want to load all data about a Child and his pets, but i don't ...
0
votes
1answer
229 views
Potential MySQL Buffer Problem? Need Help Debugging
From the middle of a script I've been able to isolate a (very sudden) issue with querying some data from MySQL using PHP. Using the same connection within the same API in the past, I have been able ...