The mysqli PHP extension (“MySQL improved”) is a PHP database driver, included since PHP 5. It takes advantage of new features introduced in MySQL 4.1.3 and newer.

learn more… | top users | synonyms

0
votes
1answer
34 views

Mysql bind_param() error

<?php require_once'config.php'; if(isset($_POST['subscribe'])){ $email=$_POST['email']; //check the email if it is already subscribed or not if(strlen($email)>3){ ...
0
votes
1answer
33 views

mysqli prepared statement fails

I'm using a prepared statement that fails and I don't know why (no error is returned)Here's my code: $stmt = $db->prepare("SELECT id, temps, nom, classes FROM profs WHERE matiere = ? AND pass = ...
-1
votes
3answers
57 views

Why does my query fail when I don't wrap my table and columns with the ` character?

Hopefully, some old sage can shed some light on this one. I'm baffled (easily). When I prepare my SQL statement as such (using ` on the table and column names, which isn't shown on the output ...
-4
votes
0answers
21 views

Mysqli Sum of field on date

Okay, so I have a table in my database that has multiple rows for each day (for lack of a better term at this time). For instance, I have one day with 3 rows, and one day with 10 rows. I need to sum ...
0
votes
2answers
58 views

Count number of rows until given value in MySQL table

I've searched for quite a while for an answer to this with no luck. Sorry if this is answered somewhere I couldn't find. I basically have a queue in a MySQL table and I need to tell people what ...
0
votes
1answer
68 views

send SMS from website

I have google around and try to see if I could find something php server where you can see it on to mobile etc.. I have read me until that one must have an API code before you can do it. Hope you can ...
-1
votes
1answer
30 views

Header doesn't redirect after login [closed]

After successful login my login.php script used to redirect back to index.php, however I have recently noticed that this no longer works and I get a white login.php rather than being redirected to ...
0
votes
1answer
38 views

Iterate list values from table

I have two tables, who are joined and the ID of each table and element underneath are similar. parentID | objectName | subID ID| className| subName | _____________________________ ...
-3
votes
1answer
30 views

MySQL INSERT BETWEEN [closed]

I am new to MySQL and I am trying to create multiple inputs from a PHP file to my database. I came across with MySQL BETWEEN and NOT BETWEEN which I think will help my task a lot with the operations. ...
0
votes
1answer
22 views

“Load data local infile” command not allowed

I am using the PHP mysqli library. Every time I try to run a LOAD DATA LOCAL INFILE command, mysqli complains with the message The used command is not allowed with this MySQL version I do not ...
0
votes
2answers
47 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 * ...
-5
votes
3answers
35 views

MySQL to MySQLi (result) [closed]

I'm quite struggling with mysql_result, how can I exactly covert my current MySQL function to the correct MySQLi function? mysqli_result(mysql_query(""), 0)
-2
votes
2answers
35 views

Compact a MySQLI fetch_assoc() to one array per column

thanking to Detect data type while using fetch_array with MySQLi and Output a property with PHP5 and method chaining, I am able to populate a json object in a MySQL query using MySQLi and method ...
0
votes
1answer
29 views

404 error in magento module

i new in magento add column or field in customer group using module and another module as like as product with add, edit or delete option i search for this but doesn't find the specific answer how ...
0
votes
1answer
27 views

Monthly totals month returning NULL, and only outputting running total

I am using the following to try and output my monthly totals in a format such as : January Quoted Total : £678 Parts Total : £432 Profit Total : £244 February Quoted Total : £650 Parts Total ...
-1
votes
1answer
63 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 ...
-2
votes
3answers
47 views

Mysqli Update Script Error : You have an error in your SQL syntax [closed]

function updateSpeed($id, $name, $url, $cat_id, $cat_name) { $mysql = Link::DBASSET(); $query = "UPDATE flux SET (name, url, cat_id, cat_name) VALUES('" . ...
-5
votes
1answer
57 views

mysql functions outdated? [closed]

Why are mysql functions considered outdated and thus discouraged from being used? I do not seem to find anything wrong with them and would like some explanation which could help me decide if I should ...
-1
votes
1answer
43 views

How to make 'select auto_increment' work with mysqli [closed]

Now that I am using mysqli in PHP, the following query doesn't work: "SELECT AUTO_INCREMENT FROM information_schema.TABLES WHERE TABLE_SCHEMA=DATABASE() AND TABLE_NAME = 'my_table'" Why not, and ...
0
votes
4answers
51 views

Find the names and telephone numbers of all customers who borrowed a particular CD

I want to be able to find the names and telephone numbers of all customers who borrowed a particular CD and had to return it by a particular date. I have tables set up for CD (title, type, year) and ...
-1
votes
2answers
26 views

Successive MySQLi prepared statements not working

I want to make successive calls to MySQL stored routines (using prepared statements) from the same PHP file, like this: $conn = getconn(); $stmt = $conn->prepare("CALL GetUserLoginData(?);"); ...
0
votes
1answer
40 views

How do I show the age of someone from a database? [duplicate]

A friend of mine gave me this code, but I can't seem to get it to work. It keeps telling me that I have an undefined variable, but I have tried to define it several different ways, but it doesn't show ...
0
votes
0answers
73 views

PHP MySQL syntax error near '' [closed]

I've been searching for my error and I can't seem to find why the syntax is wrong. I'm trying to set up bad-behavior (http://bad-behavior.ioerror.us/about/) using the generic script. When i try and ...
2
votes
2answers
25 views

mysqli insert statement error

Just updating my mysql connections and so forth to use this mysqli implementation. I'm trying to run the code below... The connection to the database is fine and works, and when I substitute the ? ...
-2
votes
1answer
44 views

Registration form not working

I am using this code for registering users, but it is not working. It always echos "Registration failed." I tried many times but nothing works if(isset($_POST['sub'])) { $uname = $_POST['uname']; ...
-1
votes
3answers
70 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 = ...
-1
votes
1answer
13 views

Missing row from mysqli $query

I have a problem with MySqli not outputting the result of my query. $cxn=mysqli_connect($host,$user,$pw,$dbname) or die("Error connecting to server"); ...
0
votes
2answers
24 views

SELECT * FROM Linked MySQL server

I have a SQL Server 2012.(120.120.55.15) Today I linked MySQL server(120.120.55.30) to my SQLServer and gave it a name "MYSQL". In Object Explorer everything seems fine. I can see MySQL server's ...
2
votes
1answer
33 views

How to get days,hours,minutes,seconds left for an event with different timezone through mysql query

My server has a timezone of US .Need to generate the JSON response from PHP for IST timings showing the days,hours,minutes,seconds left for some event. I know it can be done using the PHP . I want to ...
1
vote
1answer
11 views

Commands out of sync while calling stored procedure Mysql

i have two store procedures, i needed to page the record (say select every next n records) to the first one which select all matching records is. CREATE PROCEDURE `trans_all`(IN varphone VARCHAR(15)) ...
0
votes
1answer
19 views

MYSQLI_REPORT_STRICT don't throw mysqli_sql_exception ,but MYSQLI_REPORT_ALL does

I had set mysqli_report(MYSQLI_REPORT_STRICT) and try{ //query sth ,error will happend }catch(Exception $e){ print($e->__toString()); } but there is no debug info . but If I set ...
0
votes
1answer
12 views

mysqli text together with subquery output

im trying to do an WHERE on a text+ subquery output but i get an error, if searched on internet but i couln't fild anything thats helps me with this situation. here is my query UPDATE labels SET ...
0
votes
1answer
15 views

php - mysqli_stmnt::get_result equivalent

I am developing an internet site, using php 5.3, and mysql for database. When using the database, after lines such as: ... $stmnt = $mysqli->prepare("Select ID from users where loginid = ...
0
votes
3answers
49 views

Returning Multiple Data with MySQL query

There are a couple questions I have regarding the following code: // Create a new MySQL connection, inserting a host, username, passord, and database you connecting to $conn = new ...
0
votes
1answer
32 views

Cant pass mysqli connection to class

I am trying to pass an mysqli database connection to a php class. The code I have so far (cut down for simplicity) is as follows: db.php $db_host = 'localhost'; $db_name = 'dbname'; $db_user = ...
-2
votes
2answers
26 views

$query mysql_fetch_assoc() error [duplicate]

this is my code for getting the input of two text fields, sender and message. However, my webpage keeps giving me this error: Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean ...
0
votes
1answer
45 views

Variables are not set when member has been logged in [closed]

As I'm using an old mysql_* code which is not secure I decided to try with mysqli. I found a great (I think) login code example online and I have (almost) successfully implemented this code into my ...
0
votes
1answer
27 views

Multi-row insert statements using mysqli and bound parameters [duplicate]

I'm trying to figure out how to properly achieve multiple row inserts along the format of insert to tbl values (?,?,?), (?,?,?), (?,?,?); The mysqli_bind_param doc is pretty clear on how to ...
0
votes
3answers
34 views

Creating composite foreign key on a primary key

I have a table called events with event_id as a primary key and a table person with person_id as a primary key. I want to have a table that contains two columns event_id and person_id as foreign keys ...
-5
votes
0answers
46 views

mysqli prepare statement works on localhost but not on server (returns false)

I have a code snipped, which works like charm on my local machine: $stmt = $con -> prepare("SELECT * FROM `category`"); $stmt -> execute(); $res = $stmt -> get_result(); $row = $res -> ...
0
votes
1answer
38 views

How to set primary key with duplicate values based on main primary key?

I have 3 tables in my data base "countries, cities and address_book" Table : countries country_code (primary key) country_Name Table : cities country_code (primary key) city_code (primary ...
2
votes
4answers
40 views

Load data infile gives me an access denied permissions error. How else can I import a text file into my table in my database?

I want to import a text file that contains data separated by , . I read on several sources that most people use, "LOAD DATA INFILE". So, I figured it would work for me too. I get this permissions ...
0
votes
0answers
26 views

Should I use AJAX og simple PHP [closed]

I am making a page where you can create an event. You fill out all the forms like name, place, time etc. I would like to add a function that gives the event-starter the opportunity to invite some ...
-1
votes
1answer
28 views

Query to monitor the double bookings in the database

I need a query for the following requirement table name: hms_reservation_mst coloum name : reservation_no , reserved_by I want to know the reservation_no's for which a particular ...
-4
votes
0answers
30 views

OAuth 2.0 Login implementation in zend Framework [closed]

I am new in both OAuth2.0 and zend fraework. I want to implement a login page that check user info with mysql database and gives permission to login by using OAuth 2.0 and zendframwork.
2
votes
2answers
42 views

MySQL update a field with an incrementing variable

I have a table named 'textile_events' in one of my databases. mysql> describe textile_events; +-------------+--------------+-----+---------+----------------+ | Field | Type | Key | ...
0
votes
3answers
42 views

Why does this code miss the first entry?

Ok, I have a little problem with my code: it doesn't get the first result? For example: the ban table may look like this: [http://i.stack.imgur.com/dYuCd.png][1] But it the data echoed will miss that ...
-3
votes
1answer
77 views

why my php/mysqli code doesn't work? [closed]

I have written this code to check user data that exist in db : $username = $_POST['username']; $email = $_POST['email']; $mobile = $_POST['mobile']; $SQL = "SELECT ...
0
votes
2answers
55 views

PHP CRUD Unknown column in 'where clause'

I am creating a CRUD page. I've been able to insert data into my database, with the following code: $query="INSERT INTO user(USER_ID, PASSWORD, FIRST_NAME, LAST_NAME, CONTACT_NO, ...
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 2 3 4 5 81