0
votes
2answers
29 views

Cant get mysql query working

ok I have these two functions in my functions file for my site they are there too move files names to my database to pull in images this is the query thats not working mysql_query ("UPDATE `users` ...
0
votes
1answer
12 views

Laravel display table record using query

This may be a silly question but I'm stuck.. I basically want to run a simple select query in laravel and show result from a single row in database result. I'm new to php and laravel so trying to ...
0
votes
0answers
51 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 ...
-4
votes
3answers
56 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 ...
0
votes
2answers
22 views

Doctrine2 Symfony2 how to ignore NULL in query builder?

I have a route with may or may not contain values, and wish to query Doctrine based on that, /** * @Route("/{productType}/{region}/{town}/{road}", name="product_type" , defaults={"productType" = ...
0
votes
0answers
34 views

Sending string to php and retrieving database query dynamically using jQuery inside a javascript function

I have this site where you search for a food name it displays it and when you click it, it should display values like calories, fat etc. So there are two db searches. I'm having trouble with the ...
-2
votes
4answers
36 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
42 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, ...
1
vote
4answers
57 views

Escaping “?” in a constructed MYSQL query

I need to search the database for a record with an attribute of ?. When I construct the query similar to the one below it expects a parameter to be passed in as well. select id FROM / * table * / ...
-2
votes
1answer
70 views

Notice: Undefined variable:( PDO ) [closed]

I've been trying for over 5 hours to understand why my query doesn't return my database values, I've tested with a different query to return my _iD which equls my User ID and I am able to connect but ...
1
vote
3answers
40 views

Php foreach data insert

Hi i have an app on Joomla + php + Mysql. The array passed into function where it will be insert into mysql database. Following are my code. public function setItems($params,$type) { $search_id = 1; ...
0
votes
1answer
42 views

PHP Query Fails, SQL Query Works? [closed]

I'm having a massive moment, I've been playing around with this bit of code for AGES now. I just can't get my head around this. Hopefully, one of you guys can give me a hand. I've commented the code ...
0
votes
2answers
36 views

Selecting a Column from a Row from a previous Query

I'm really sorry if this is a simple fix but I'm completely stumped, probably suffering from a temporary block. Anyway, my predicament goes like this, my website has a page that includes events, I, ...
-4
votes
2answers
39 views

I wrote this code to retrieve a value from a database but when I put a variable into it it gives me an error message. How do I fix it [closed]

Here is the code $result = mysql_query("SELECT cost_ft FROM Beams WHERE number = $beam_num") or die(mysql_error()); // store the record of the table into $row $row = mysql_fetch_array( $result ); ...
0
votes
1answer
31 views

MySQL retrieval from database not retrieving multiple rows

I'm trying to retrieve all data with the LIKE query from the users input and match it to the database, it works but only returns one record but I have many records in the table. It returns the ...
-1
votes
3answers
69 views

Using PHP to get data from multiple database tables

I am trying to query five tables. I am able to query one of the tables with $query = "SELECT * FROM Stats_player WHERE player='$user'"; However, when I try to query another table with $query = ...
0
votes
2answers
27 views

Two query, two results from sql trying to divide them in php

i have two count query from the sql. I wan to divide this two query's result. i tried: $con = mysqli_connect("localhost", "root", "", "xoxo") or die(mysqli_connect_error()); $query = "SELECT ...
2
votes
2answers
55 views

String seems to end query

I am storing user's liked pages from facebook in my postgres database, one of them being Sinead O'Connor's page. It seems like when it gets to the apostrophe, it terminates the query beacuse the ...
-1
votes
1answer
85 views

How to update SQL with single query and not with php loop? [duplicate]

These are my tables: tbl_answers => aid qid answer uid dateposted emailnotify namedisplay status isbestanswer tbl_questions => qid question ...
1
vote
1answer
33 views

How to Get another value in another table using a dynamic call

I currently have this query with an array that outputs the variables within using a dynamic input in my form (term), this creates a Dynamic Search with auto complete to fill in all of the details for ...
0
votes
1answer
25 views

Confused about MonogDB Query (PHP $and)

I have the following code in PHP to connect to my MongoDB instance: $connection_string = "mongodb://XXXXXXX:XXXXXX@XXXXX:XXX/myDB"; $mongo_or = new Mongo($connection_string); $db_or = ...
-1
votes
2answers
29 views

Been looking at this for days, no idea. "Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given [duplicate]

Okay, so I am trying to add a user registration form to my site. I've been trying to fix this for days and nothing I've tried seems to work. Currently I'm getting this Warning when I fill in the ...
0
votes
3answers
31 views

How to use a PHP variable in Inner Join MYSQL query?

I have been trying for the past day to get mysql to recognize my PhP variable, but I have had no luck so far. The code: ...connect to db... session_start(); //Calls up Session stored variable ...
0
votes
2answers
19 views

my custom PHP stdev function VS mysql's STDDEV_POP

So I have this code: $arr = array( 1,2,3,4,5,6 ); $num = count($arr); $sum = array_sum($arr); $average = $sum/$num; foreach($arr as $val) { $sum += pow(($val - $average), 2); } $stdev = sqrt($sum ...
1
vote
3answers
36 views

Compare $Variables Results, and then orden in different Ways

Hello i just finish a code where i get like 50 variables... all of them with int values.. I have the variables as separete values, just for this example I will set the variables with the result, BUT ...
0
votes
6answers
47 views

How to add contents of file to MySQL query inside php

I'm using the following php query to install tables in my CMS system: $q=new mysql(" INSERT INTO `adm` (`id`, `login`, `adm`, `passwd`, `czas`, `logged`, `ip`, `email`) VALUES (0, 'admin', 1, ...
0
votes
1answer
26 views

Gathering information in 1 row using related tables

I am trying to build my database using related tables. I am getting the right output from the database, however - Since the user is the same, and the only change in data is the courses, I would like ...
0
votes
1answer
22 views

Joining 2 Tables and show the same column repeatedly based on its associative ID

Hi i am not sure how to put this in a brief sentences, but i have DB table like the following User Table user_id username and so on... Item item_id item_name Item_Equipped equipped_id head ...
3
votes
1answer
36 views

Find the nearest postcodes to given postcode using ordance survey easting and northing system

I have a database table of uk postcodes that has 4 fields postcode, east, north, pqi example values: ST1 6BQ, 388605, 349057,10 Primary key is postcodes and east and north are both int(11) ...
0
votes
1answer
35 views

Parsing error in DATEDIFF php

Below is my sql query in php. SELECT * FROM Tbl_Players I WHERE DATEDIFF( DAY , NOW( ) , I.FirstLoginTime ) <1 LIMIT 0 , 30 FirstLoginTime is field in sql table which has value of DateTime. I ...
7
votes
1answer
58 views

Count SQL Syntax COUNT (value) multiple columns

Hello im trying to learn about Count in sql, but i cant even count how many times a value is in a specific column My database structure is this. (table : natural) ID | one | two | three | 1 | ...
1
vote
2answers
30 views

(PHP) MySQL random rows big table with order by and certain range

I have this table: person_id int(10) pk fid bigint(20) unique points int(6) index birthday date index 4 FK columns int(6) ENGINE = MyISAM Important info: the table contains over 8 million rows and ...
1
vote
0answers
36 views

Performance on PHP sql queries [closed]

I'm barely learning PHP and MYSQL so I don't know much about performance, I've wrote this script to fetch and format content from my DB, it also counts how many result are and separate them in to ...
0
votes
3answers
66 views

Database most common entries query

having had assistance that helped show result, its not showing the results as i need them. I have this Table name = power Column names = power1, power2, power2, power4, power5 $res = ...
0
votes
0answers
43 views

PHP/HTML Query from Dropdown menu

Below are my create tables, html file that has a drop down menu that has artists, and a php file that based on the artist displays all the title's of albums by that artist. I can't seem to get the ...
0
votes
2answers
41 views

Insert a customer borrowing a particular CD

So, I have question on whether the SQL statement for inserting a customer borrowing a particular CD is valid or not. Here's the form I want the customer to fill out. <form action="proj3.php" ...
1
vote
2answers
84 views

Checking mysql insertion query

I wrote a query but now I'm having doubts. The first one I have to insert a CD supplied by a particular supplier and produced by a particular producer. $sql="INSERT INTO cd (supplier_name, ...
0
votes
1answer
26 views

PHP- select specific row from MySQL database

I Need to select a specific row from a MySQLi database based off of a value in it. For example I have a Table with a column named "house", and under that column there are maybe 5 rows with the title ...
0
votes
4answers
42 views

Construct AND query if parameter is empty

I'm allowing my user to search by 10 different criteria. I'm picking that from url. But problem is if some of that criteria is/are empty. Then it will search record in database where is empty record. ...
0
votes
0answers
19 views

Delete & Edit data from DB (php & modx)

I need to get data from db and links (or buttons) which will do DELETE and EDIT options. Now i've the following code (modx snippet) <?php global $modx; $output = ''; $result = ...
0
votes
1answer
56 views

Wordpress plugin display query in linked file

I am creating a wordpress plugin that will query a db based off of user entered parameters and display the results in a linked html file. I can get it to display the html page, but the results ...
0
votes
1answer
26 views

Debugging Query execution in PHP

I have this code: $room_chan = RoomChannelQuery::create() ->filterByChannel($hotel_channel->getChannel()) ->filterByRoom($res_room->getRoom()) ...
1
vote
2answers
51 views

Complicated MySQL Query for MLM Business

I've got confused at the moment. I've got one database to developed for MLM (Multi Level Marketing) company. so, there's one Members database.. each member have unique ID called membercode.. and all ...
3
votes
2answers
65 views

I try to query a mysql column which has the name “5”. This outputs the wrong column which has the name “22”

I try to query a mysql column which has the name "5". This outputs the wrong column which has the name "22". This is my php code, $pid is the variable I am getting from the android app and is always ...
0
votes
1answer
38 views

how to solve date matching in php mysql website?

So here is the thing I get dates from users from select tags like this: <select> <?php for($i=date('m'); $i>=0; $i--){ echo "<option>".$i."</option>"; } ?> ...
1
vote
3answers
43 views

Get related rows in one table using a table with relations

I have two tables. One stores the content records, the other one stores the relations between the content-records. table "content" table "relations" +---+-----+------+------+ ...
0
votes
1answer
56 views

Mysql query to get a Mutual friend count and display it in a table in php

I have a table called myfriends with 2 columns: friend_id1 friend_id2 When someone is a friend of some there will be two records. For example lets take 4 members: 1000, 1001, 1002 and 1003. if ...
0
votes
2answers
32 views

Error when using custom query in cakephp?

I have using cakephp for my website. And i use sql server 2012 with it. I have confused that when i use: $this->set('types',$this->Manager->query('select * from product_types')); to get ...
2
votes
2answers
56 views

How to show mysql records more than once and in a specific order

1) This is a much simplified example of what I am trying to do for ease of explaining the problem. 2) I will be doing thousands of these queries. I have a mysql table like so: NUMBER TEXTCOLOUR ...
0
votes
1answer
16 views

Order by One Custom Field Value and Select Posts From Another With Wordpress

I'm trying to only show posts that are marked as in-stock and order them by their inventory_number (which is a number value so I'm using meta_value_num). The code below is selecting in-stock items, ...

1 2 3 4 5 97