1
vote
1answer
12 views
Mysqli query with a SET variable statment (ie multiple queries)
I want to set a variable to use in a mysqli query. This doesn't quite work. Prior to mysqli I used to set query calls. I played around with db->multi_query($sql) with no luck. …
0
votes
2answers
47 views
Problems with my prepared statement update
$query = "UPDATE kids_entry SET entries=? WHERE parentsemail=?";
$stmt1 = mysqli_prepare($connection, $query);
mysqli_stmt_bind_param($stmt1, 'is',$entries,$parentsemail);
mysqli_e …
0
votes
1answer
20 views
Returning specific rows using prepared statements
I have a problem where my prepared statement appears to only be returning the number of rows returned rather than the value of the row. Below is my code. I did try google for this …
1
vote
2answers
41 views
PHP - Get a single result using mysqli
I have descided to change from mysql to mysqli part way through a project - and run into this hicup.
What is the best way to achieve this:
//check if username is taken
$result = m …
0
votes
3answers
36 views
only list jobs if current time > expiry time (php mysqli)
hello :)
I am trying to list out all records from a database that have not expired.
i have a jobs listing site being developed, i have code to grab all the 'active' job details f …
0
votes
4answers
44 views
Getting list of items in mysqli query
Hello, I currently have a list of things to update in the given mysqli query:
$insert = mysqli_query($db,"UPDATE `tbl_perms` SET
`1` ='" . mysqli_real_escape_string($db,$_POST['p …
0
votes
2answers
50 views
grab current user id - php class
Hello everone,
I am buidling a small job application website, and i'm using a the basis of a login system taken from a Nettuts.com tutorial.
The logging in works fine, but I am ha …
1
vote
2answers
65 views
Zend_DB - Use native MySQL adapter instead of MySQLi or PDO?
The server I'm porting to doesn't have PDO nor Mysqli extensions enabled ( though it is running PHP5 ). I don't see any MySql.php class in Zend/Db/Adapter - is there some conventio …
1
vote
3answers
22 views
PHP mysqli_fetch_field data type
Hi folks,
I need some help tracking down a bit of nitty gritty information on the information in the fetch_field method of a mysqli result object.
Specifically the type property …
1
vote
1answer
34 views
Insert record failing! php mysqli
Hello, i have a mysql database...
CREATE TABLE `applications` (
`id` int(11) NOT NULL auto_increment,
`jobref` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`q1` text NOT NULL,
`q2 …
0
votes
2answers
54 views
Retrieving Multiple Result sets with stored procedure in php/mysqli
I have a stored procedure that has multiple result sets. How do I advance to the 2nd result set in mysqli to get those results?
Let's say it's a stored proc like:
create procedur …
0
votes
2answers
27 views
Mysqli Prepared Statement Problem in bindParam()
Hi guys.
Just as usual i was looking around best practices with PHP, and prepared statements seems the kind of stuff i should now how do with my eyes closed. So i started playing …
0
votes
2answers
280 views
Possible to use multiple/nested MySQLi statements?
Is it possible to have a MySQLi prepared statement within the fetch() call of a previous statement? If not, what's the best way around it?
Example code:
if($stmt = $link->prep …
0
votes
4answers
77 views
MySQL connection in PHP
Hello everyone. MySQL connection in PHP can be established in two ways:
$mysql = new mysqli('localhost', 'user_name', 'password', 'database_name');
or
$link = mysqli_connect('l …
0
votes
1answer
30 views
Are mysqli_multi_query php function connect 1 time to db or each query?
Hey Guys,
Just wonder if the function mysqli_multi_query connect just 1 time to the database or each query?
