0
votes
3answers
28 views

Escaping quotes and percentage sign in SQL

I checked similar questions but couldn't find any solution to my particular problem. I have a PHP method that I use as follows: SELECT * FROM login WHERE userID = 10 //To get this $result = ...
0
votes
2answers
54 views

PHP Problems with using the $_POST with and insert statement

I am trying to connect a web form to a database. I am getting an error of an undefined index for the text field of my web form. I used an SQL insert statement with a $_POST function to insert the data ...
2
votes
1answer
40 views

Why am I getting wrong values from my joined tables?

Here is my MySQL schema CREATE TABLE IF NOT EXISTS `sales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `date` date NOT NULL, `total_tax` decimal(25,2) NOT NULL, `total` decimal(25,2) NOT NULL, ...
2
votes
2answers
26 views

How to store the Oracle sql query result in multi dimension array in PHP

I've a PHP script to fetch the data from Oracle SQL. I need to include fetch statement in HTML code. Basically I want to process all PHP related and database related queries in PHP tag and wherever ...
0
votes
2answers
45 views

How to join multiple queries

I want to list producers information who produce CD of a particular artist released in a particular year. My attempt: $sql="SELECT * FROM producer, cd WHERE name = name and year= year JOIN SELECT * ...
0
votes
1answer
18 views

How to create margins when fetching text such as a description, from a database

On my website, I am trying to fetch a description from a certain page, which works, but it just stays on one single line and you have to scroll sideways to read it. I want it to go up to a certain ...
-1
votes
1answer
37 views

Changing colour for row in php + access

Hi I'm trying to add colour to the specific rows that have a status of O and P. I have 8 different columns in this display page (status being one of them) So far my code looks like this: echo"<tr ...
-1
votes
2answers
20 views

Adding colour to specific rows SQL, PHP, Access

I'm trying to sort a database for high priority alerts. My goal was to get the higher priority alerts at the top of the page ('O' and 'P') and the lower priority alerts at the bottom of the page. ...
0
votes
3answers
40 views

php + sql hierarchical array result

I'm using php + sql. Now I've a table like this: user_id word ------------- u1 w1 u1 w2 u2 w1 u2 w3 And I want to query the database for the data grouped by user. The ...
0
votes
3answers
27 views

i want to run a query to get Hierarchy of catagory_name [duplicate]

if my database look like this:- | CATAGORY_ID | CATAGORY_NAME | PARENT_ID | ------------------------------------------- | 1 | x | 0 | | 2 | y | ...
-1
votes
1answer
58 views

Mysql asks for a default value for an auto incremented primary key field

I am facing a strange problem . I'm using mysqli extension from php and am calling a stored function in mysql , which inserts some values in a table , i leave the user_id field vacant since it is ...
-5
votes
0answers
29 views

Why doesn't this query work? ODBC + PHP + “NOT EXISTS” [closed]

I am using an odbc connection, not a sql connection, if that means anything... Error MSG: Extended SQL - Correlated Subquery feature is not licensed EDIT: HERE IS THE FULL PHP CODE: <?php ...
0
votes
4answers
33 views

List the “ID” once if all rows with that ID meet the criteria

I have a table containing orders, and another table containing every line item on all orders: SALES ITEMSALELINES Order | Order | Line | QtyOrdered | InStock 1 | ...
0
votes
2answers
27 views

how to get the number of rows in a table that come after a row with a specific id?

how do i get the number of rows in an sql table that come after a row with a specific id with php? I want to get the number of rows that come after the row with an id of 6.
0
votes
1answer
34 views

Login & home page issues?

Well i just got my login page to work as it should and of course this has caused something else to go wrong, the issue i am having is that when you go to the home page it should allow you to browse ...
2
votes
4answers
46 views

How do you insert and retrieve an array value out of a MySQL database with PHP?

So I have a PHP array "$shared" with values [0, 1, 2] (I'm just using this as an example). I want to insert and retrieve this array from my MySQL database, but its not working. Currently I'm using ...
2
votes
2answers
55 views

PHP Daily bonus

I need to code daily bonus system. User must be able to recieve bonus once a day. I coded something like that: function checkDailyBonus($user, $type) { global $ado; $last_day = ...
0
votes
1answer
48 views

Previous row value being written

I am trying to only add values from rows where a checkbox named "Addbox" is true, the below code identifies when a checkbox is ticked and only adds those items to the users wishlist. However it adds ...
0
votes
3answers
38 views

Login page not working?

I have some code for a login page i have except it doesn't seem to be working and by this i mean when i enter a correct username and password and click log in, the form just reloads and stays on the ...
0
votes
0answers
52 views

How to use this sql query? [duplicate]

I have flash games website, and when you give like/dislike to any game it's inserting into likes table. Here are the columns of likes table: game_id (the game id you gave like) time (the time you ...
-5
votes
3answers
59 views

How to excute this SQL query? [closed]

I have flash games website that allows users to "like" or "dislike" a particular game. When the user selects "like/dislike", my php application inserts a record into a table named likes which contains ...
-1
votes
1answer
49 views

Getting values from mysql tables

I'm new at using sql but I have a problem that I just can't seem to solve. I have four tables: T_Item, t_trade, T_sender_trade and T_receiver_trade like this: T_Item (itemID, name, category, ...
0
votes
2answers
24 views

Stopping Duplicates in two fields in the same row in a SQL Database

I'm creating a sign up sheet system for my website. Each sign up sheet is given an ID number. When a user signs up it sends the username and the ID number to a database. However I want to stop ...
0
votes
2answers
69 views

How can I group sql rows by hours?

My table: tbl_questions => qid question detail mcid cid uid answercount dateposted status showname emailnotify question_type_id I would like to get all rows group by hours. {dateposted = Y-m-d ...
-1
votes
0answers
39 views

Speed up MySQL Query that queries large network of websites

I have a network of website which are all powered by one system and I am currently running a query which is starting to get quite slow for products listings pages. This is due to the part that deals ...
-2
votes
2answers
34 views

I have a sql table with only two columns, CODE and BALANCE, CODE is a name and Balance is a $ amount [closed]

How come when i try to print_r inside of this echo and div class it returns patient owes 1? $balance_out = sql::results("SELECT CODE,BALANCE FROM event.acs.ptbalance() WHERE CODE='$patient_id' ...
0
votes
3answers
39 views

php - issue when update the db

I'm working on updating text to sql. I am facing problem in my code below not updating the db, but when i change the where pid='$data[pid]' statement to some index like where pid='3', it works. I'm ...
0
votes
2answers
45 views

Sorting after union all or order by case when

To test these queries I’m running them in the SQL query wizard in Microsoft Access. I’m trying to modify an existing php file in order to display the high priority status alerts (O and P) at the top ...
-2
votes
4answers
37 views

Why does this keep give syntax error or $_end error?

<?php if(isset($_POST['update'])) $dbhost = 'localhost'; $dbuser = 'XXXXX'; $dbpass = 'XXXXX'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' . ...
1
vote
2answers
45 views

Eliminate duplicate columns in MySQL left join query

I have two tables: question(id_question, name_question, text_question) and choice(id_choice, text_choice, id_question) my query in php code is : $query = ' SELECT q.name_question, ...
0
votes
2answers
28 views

check databes if the result same with table value

guys with this script i can check the username and password so its rturn 2 value for me if( $result == false ) { $packet->AddDWValue( "fail" ); $packet->AddDWValue( "incorrect ...
0
votes
3answers
56 views

No errors, sql is right, table doesn't update

I'm trying to update my database via a simple form and for some reason, the table doesn't update. I tried the sql query inside phpmyadmin and it seemed to work fine. <?php ...
0
votes
1answer
24 views

How do I work out average rating and add a new column to my MySQL table to record this

I have a MySQL table of product ID's which has columns which show how many times each of these products has recieved a 1, 2, 3, 4 or 5 star rating from my customers. I would like to insert into the ...
1
vote
4answers
47 views

How do I select a row based on a date

I have row in which is string value from strtotime(), for example 1303448400. My table has following stucture: id | date And from my input I recive date in this format: MM/DD/YY. How to create a ...
0
votes
6answers
48 views

php and sql random values

I have a php sql script that generates 5 different values from a database everytime that it executes. I want those values tot change lets say once a month and not everytime the script runs. My code ...
0
votes
2answers
39 views

Yii/SQL: Get rows that exactly match a list of values

I'm trying to figure out the SQL query for the following case: I have 2 tables one contains items and another contains properties for each particular item. How could I find all items that match ...
0
votes
1answer
36 views

How to search firstname and lastname in mongodb

I read this article and saw how to search for the firstname of a record in mongodb: http://docs.mongodb.org/manual/reference/sql-comparison/ db.users.find({ firstname: /^bc/ }); but how do I ...
0
votes
0answers
20 views

SQL update dynamic fields

I have a dynamic generated form with multiple fields. So users can see multiple 'projects' and select one and see the form that belongs to that project. Now not all fields from the database are ...
1
vote
1answer
41 views

Combining SQL query Array in PHP based on element

I have made a favorites function on my site that someone can choose different items that go together and save it as a favorite package in their account. All items are saved in a favorite table with a ...
1
vote
3answers
49 views

MySQL tables of constants

I'm just trying out foreign keys for the first time and I'm worried I'm getting a little carried away. For several of my class variables and their corresponding database records, I've got sets of ...
0
votes
3answers
72 views

sorting html table with a href and php from sql database

I have a html table that contains product data from an sql table that is spit out with php. I'd like to sort the data by clicking the heading of the table column. I'm outputting my table like so ...
1
vote
1answer
17 views

PHP String Limitation On odbc_fetch_array

I have the following sql SELECT bw_imp_step as imp_action, FROM cm3rm1 m1 INNER JOIN cm3rm2 m2 ON m1.number=m2.number WHERE m1.number='$id' when this same query is returned in DbVisualizer it ...
0
votes
0answers
14 views

PHP filter_input() and bindValue()

I am writing a basic CRUD application to get my head around PHP. I am a little confused as to what exactly the following code is doing. I understand the general concept of it but I am not 100% sure of ...
0
votes
1answer
35 views

Sorting After Union All

To test these queries I’m running them in the SQL query wizard in Microsoft Access. I’m trying to modify an existing php file in order to display the high priority status alerts (O and P) at the top ...
0
votes
1answer
35 views

Sql matching one value against multiple columns

On my website I have a search box. At the moment it works, but it only will search the body of the text for keywords. To do that I'm using sql's match against function. public function searchKey(){ ...
-1
votes
1answer
29 views

Best method to count page views from individual users? [closed]

I have a video site in which the users view the site and like YouTube it shows the views. I can just have a counter in the sql that just adds each time the page is viewed but that could be exploited ...
1
vote
2answers
18 views

SQLite select multiple foreign keys to one row

I'm trying to set up a high scores board for a game I'm making. On the board, I'm using foreign keys to two other boards, players and weapons. Each score stores the four weapons the player used on ...
-2
votes
0answers
61 views

it doesn't create record in database

there are few functions (i think problem is there) from User_class, when i create new user in my website- record isn't added in database, what's wrong? Sorry for my english. public function ...
0
votes
2answers
46 views

SQL Limit issue with infinite scroll

I have a function that loads images within a gallery. Throughout the site it loads the last 20 images, then when a user scrolls down it loads another 20 and works with an infinite scroll code. ...
1
vote
2answers
27 views

How to use PHP to return the last inserted ID on an MSSQL table with Triggers installed

I am attempting to run a query on an MSSQL database and return the insert ID using PHP. Previously, I had been using the following code for this, which worked fine: $q = "INSERT INTO Pricing ...

1 2 3 4 5 235