Tagged Questions
-4
votes
0answers
30 views
mysql_num_rows() expects parameter 1 to be resource [duplicate]
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in
I know this has been posted before, but everyone else's solutions seem to be different and irrelevant in my case.
...
0
votes
1answer
30 views
How is an instantiated object treated inside of an if statement?
For handling the conversion to strings, the magic method __toString() exists in php. However, if I have an instantiated object, such as:
$myObj = new Object();
$myObj->doSomeThings();
if ($myObj) ...
-1
votes
3answers
37 views
ImageMagick Installed, True or False, How to Check? PHP [duplicate]
I have to run a function that has an option to use GD or ImageMagick - what is the best way (php) to test if ImageMagick is installed, and return a true or false?
0
votes
1answer
59 views
different result multiple query with rand boolean mysql and php
I need to give a result that differs:
You can eat sandwich.
You can eat sandwich but cannot eat donuts.
You can eat donuts and drink.
The whole thing must be pick at random.
The problem is the ...
0
votes
1answer
35 views
PHP reporting that I'm feeding in a boolean..I'm not [duplicate]
I'm creating a simple blog system for myself -- it is done, but any time I view the posts page, PHP spits out an error about how I'm feeding in a boolean to mysqli_fetch_array. Last I checked, the ...
0
votes
3answers
86 views
Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in [duplicate]
I have a code like this, this is the line 16:
$query=mysql_query("select harga from pakaian where 'kodeb'=$kode") or die($query. "<br/><br/>".mysql_error());
...
0
votes
2answers
52 views
Select last row of mysql table and edit and change its boolean value
I am looking for the correct way to go about selecting the last row of a table and then change a value of a column(boolean) to true.
I am unsure if it is possible if you can do it with one PDO query ...
0
votes
1answer
24 views
Condition to check a BIT field
...and I'm checking this field like so:
if((bool)$website['IsDeleted']) { }
but it ALWAYS returns an empty string regardless of the value in the MySQL field wether its 0 or 1:
["IsDeleted"]=> ...
0
votes
2answers
47 views
PHP SQL query, logicaly parse result
I am trying to generate a logical condition based on weather or not a value is in a table using the code below. The echoed result comes back as ["0"]. How do I parse that so php can interpret the ...
0
votes
3answers
41 views
Get php boolean value with javascript
I want to get php booelan value with javascript.
That is my code.
<script type="text/javascript">
var $j = jQuery.noConflict();
var isValue = $j(<?php isset($getResult[]); ?>);
...
0
votes
1answer
73 views
Simple Boolean function
I currently have a table which currently displays information about a patient and calculates their waiting time.
I have a Boolean value in the patient table;
Name Type Value
Examined ...
-6
votes
1answer
152 views
Warning: mysqli_fetch_row() expects parameter 1 to be mysqli_result, boolean given [duplicate]
I checked your site, there are a lot of close hits, but none seem to apply. Here is my code:
$dbhost = 'localhost';
$dbname = 'db';
$dbuser = 'user';
$dbpswd = 'pass';
$dbconnection = ...
-1
votes
2answers
70 views
How to pass boolean argument to php function?
When I try to get the value of "sold" and "featured" I get nothing. What am I doing wrong?
function list_products($sold = false, $featured = false) {
global $link;
$result = ...
-5
votes
1answer
50 views
What to do next? [closed]
EDIT: I have moved from a JS to PHP random number query. I am stuck now, however, as to how to make each of the numbers that are generated into a variable. This would be used so that I may use each ...
1
vote
1answer
2k views
mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in [duplicate]
I'm have some trouble checking if an FB User_id already exists in my db (if it doesn't it should then accept user as a new one and else just load the canvas app). I ran it on my hosting server and ...
-2
votes
4answers
53 views
Code error after moving host: mysql_fetch_array() expects parameter 1 to be resource, boolean given in [duplicate]
So I have moved to a new host (from a free host) to Crazy Domains, and everything seemed fine, but some of the codes seem to be playing up.
Did some research, it appears to be the fetch arrays. Now, ...
0
votes
0answers
207 views
Authenticating credentials from a webpage form using a web service to allow access to a specific page
This is my first post. I have a problem authenticating credentials from a webpage form using a web service to allow access to a specific page. I am using PHP an HTML to accomplish this. The php script ...
2
votes
1answer
53 views
Boolean evaluation in reverse
Why is the boolean evaluation done in reverse in the following PHP code, as opposed to putting "false" at the end?
while (false !== ($obj = readdir($dh))) {
// do something
}
(from one of the ...
0
votes
2answers
38 views
PHP Function to Display Textual Representation of Boolean Value
Is there a PHP function that shows a textual version of the boolean setting of "1" as "True" or "On", etc.?
I know how to use if() statements to make it happen, but I searched and could not find ...
1
vote
1answer
84 views
PHP JSon How to read boolean value received in JSon format and write in string on PHP
i receive this string from another site and i can't modify what received from. The string is receive in $_POST and is :
...
2
votes
3answers
48 views
Why null key change value to 1 in php array?
Following is the code I am testing -
<?php
error_reporting(E_ALL);
$myarr = array(NULL => "swapnesh", TRUE => 1, 4 => "swap", "swap" => 4, TRUE => NULL, NULL => TRUE );
echo ...
-1
votes
1answer
35 views
Listing users with boolean set to true in DB PHP [closed]
I'm working on a basic chat application, keep in mind the idea is extremely simple. I wanted to set a boolean in the database to true every time the user logged in and false every time the user logged ...
2
votes
1answer
161 views
Send a boolean value in jQuery ajax data
I'm sending some data in an Ajax call. One of the values is a boolean set to FALSE. It is always evaluated as TRUE in the PHP script called by the Ajax. Any ideas?
$.ajax({
type: "POST",
...
2
votes
4answers
102 views
What does it mean in php to use strstr as a boolean check?
For example given code:
if(strstr($key, ".")){
// do something
}
strstr returns a string, how can it be used as boolean? How does it turn true or false?
2
votes
3answers
99 views
PHP mysql_connect not returning boolean
I have the following PHP code:
$con = mysql_connect("localhost","name","pass") or die(mysql_error());
$db = "db";
mysql_select_db($db,$con);
Now in my experience, $con should be true or false. ...
0
votes
1answer
81 views
How to check whether a URL redirects to another page or not in PHP?
What I want to see is whether the url entered by the user redirects to another page in PHP. I do not want to see where it redirects to, but just whether it redirects to another page or not.
Here's ...
-1
votes
2answers
49 views
&= yields false on even numbers
I've stumbled upon something odd, and I can't find any answers anywhere. &= seems to interpret even numbers as false. Is there a logical explanation for this, or is this a bug?
This snippet ...
0
votes
3answers
288 views
PHP comparing boolean with integer [closed]
var_dump((int) true); // returns 1
var_dump(true > 0); // returns true
var_dump(true > - 1); // returns false
var_dump(1 > - 1); // returns true
Can somebody explain me in detail what the ...
-3
votes
2answers
349 views
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given on line 26 [duplicate]
Possible Duplicate:
Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given
I'm trying to get my forum system going and I keep getting this error:
Warning: ...
-2
votes
3answers
57 views
Difference between boolean evaluation and !empty in PHP
In PHP, what is the difference between:
if($might_not_be_set) doStuff();
and:
if(!empty($might_not_be_set)) doStuff();
The former approach clutters the Apache logs with undefined variable ...
1
vote
2answers
74 views
var_dump says bool but returning a string -php
i'm trying to check my email with curl.
I've got a function which connects to gmail:
function check_email($url)
{
// sendRequest
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, ...
-1
votes
1answer
67 views
phpass boolean always remains false [closed]
I got a boolean on my login page which checks the password of the inputted user, hashes it and compares it against that of the database. But my boolean always remains false. Could someone work their ...
0
votes
2answers
44 views
php how to differentiate between 0 or 1 and boolean
In some cases the key which is returned by array_search() is 0 or 1. When I use this return value in an if-statement, php interprets it as boolean.. but I want it to be interpreted as a string. How ...
1
vote
0answers
160 views
Salesforce Soap API, query not returning the value for boolean fields
I have a salesforce query that works without an error. I can use all the data except the boolean fields. I would like to display different information depending on the value (True or False) of the ...
1
vote
2answers
53 views
How to check there is a value exists in a key in a nested array?
how can I write a function to check - as long as there is a value exists in a key in a nested array then returns true?
for instance,
$input = array(
"path" => null,
"type" => array (
...
-1
votes
2answers
613 views
PHP json_encode Boolean Values [closed]
I'm doing a simple json_encode of data and the last entry is a boolean:
{
"id": 1,
"content": "something",
"completed": false
}
However, the json_encode is wrapping the boolean ...
2
votes
3answers
59 views
Is !$festive the same as $festive==FALSE?
I have a doubt with a few lines of PHP.
I have the following code:
// returns TRUE if a day is festive, FALSE otherwise
$festive = isFestive();
//
$workingDay = $d>0 && !$festive;
Is ...
0
votes
0answers
106 views
checkbox form with php and mysql
I can't figure this out to save my life, I'm far from educated in php and mysql, but I'm trying here, I'd appreciate any help:
What I am trying to accomplish is create a form with checkboxes, a drop ...
1
vote
3answers
69 views
Convention of setting return type in php boolean functions
Is it good to explicitly 'return FALSE' in a Boolean function or just 'return TRUE'
Example A:
function check($link){
if(isset($link)){
return TRUE;
}else{
return FALSE;
}
OR
Example ...
6
votes
2answers
101 views
PHP old-school function “or” with exception [duplicate]
Possible Duplicate:
PHP: 'or' statement on instruction fail: how to throw a new exception?
In PHP, especially popular amongst the newbies in various MySQL connection tutorials, ...
4
votes
4answers
164 views
PHP converting to boolean using '!!'
Fairly straight-forward question here. Been looking over some code and I've seen a function that seems to convert a given variable to a boolean. It goes like this:
function to_bool( $var ) {
...
2
votes
2answers
574 views
To deal with 'Boolean' values in PHP & MySQL
Currently I'm using Tinyint(1) to indicate Boolean values in my MySQL databases, which I really don't like that. So, how I could store and retrieve Boolean values in my MySQL databases via PHP?
How ...
0
votes
3answers
58 views
Weird boolean evaluation behaviour in PHP
Let me share some PHP code with you:
$var1 = '';
$var2 = 0;
echo '<pre>';
var_dump($var1 == $var2); //prints bool(true)
echo '</pre>';
echo '<pre>';
var_dump($var1 != $var2); ...
0
votes
3answers
47 views
Excluding empty array variables, PHP
I have a lot of different forms on our website that have many fields I need the info from.
I used an array called $fields and have the form sent to my email when submitted. But how do I keep the ...
2
votes
3answers
124 views
PHP is_null: Only boolean true and false, not even null?
Following up on this question and answer, I decided to accept boolean true and false only, and not even null from the input by other developer/ user.
$default = array(
"category_id" => ...
0
votes
1answer
89 views
PHP filter_var: How to make sure the user provides correct data types - true or false only
I want to compare two arrays, one is set by default and another by user input.
When I have set a boolean value only in the default so I want to make sure the user won't use string or number. for ...
-1
votes
2answers
70 views
How to pass Boolean OR int from PHP to Android
I've been writing a program that relies a lot on passing strings from PHP to android; I use entityutils.toString to pass that information to my app.
However, I now need to pass a Boolean from PHP to ...
1
vote
1answer
235 views
How do I get a boolean from a querystring?
How can I send a true or false value in a querystring and then use it in php? I'm trying to do as follows, but it gives me true even when both are set to false. I'll be getting these values from a ...
0
votes
2answers
409 views
Why is this returning bool(false)?
I have this query that checks if a movement exists and supposed to return true or false. This query
function movement_performed_today($class_id, $client_id){
$class_id = (int)$class_id;
$client_id = ...
1
vote
3answers
49 views
php modify expression return value with one boolean var
This might sound naive,
but in PHP, is it possible modify the outcome of an expression with one boolean value?
for example:
if(expression)
//execute code
now, how can i do this?
...
