The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
36 views

Using isset with mysql_real_escape_string [closed]

I'm really new to PHP and am trying to build a log in system. I am aware it's really insecure, but it is just a college project in understanding the basics of PHP, so for now that's not a problem. I ...
-2
votes
7answers
45 views

PHP forms clearing after sumbit

I want to be able to clear the fields after and when someone sends a form to the server mail. But instead the input remains. even after refresh.
0
votes
1answer
22 views

Hash Style Array to Compare 2 Arrays

I like to compare an array from a database against another array to generate a new array of missing ids using isset or array_key_exists. Here is the array from my database I am creating. foreach ...
0
votes
1answer
31 views

Replace whitespace with hyphen in URL

I am trying to create a SEO friendly site. At the moment the page works because the id is shown in the URL so like product.php?id=4 however I want to replace ID with the product_name, but the value to ...
0
votes
0answers
28 views

Why is my simple if isset function not working with PDO Object?

Okay I had this on my index.php page: <!-- check if website is present --> <? if (isset($business->website)) { echo '<a href="http://' . $business->website . '" ...
-1
votes
3answers
59 views

php find xml node thanks to isset variable form url

I have a single.php page where I want to load individual post. To do this I have some links in my index.php that allows to load single.php page : <a href="single.php?blog_no=12">Post ...
1
vote
4answers
48 views

How to check in PHP if a variable is set and is_null

This question is merely for information only. I was wondering if there is a way to check if a variable is_set and if so check if it is set to null Based on the PHP type comparison tables doesn't ...
0
votes
1answer
39 views

Populating inputs with table values in laravel

I have a profile edit page that has multiple fields like the one below. These are being populated by my table values for a user address if the user has an address. It all works fine even if I only ...
0
votes
3answers
42 views

Trying to find whether my PHP variable has any content

Hi I have a PHP variable called Keyword, what I am trying to find out is if there is any content in the variable. if (isset($keyword)) { Using the above code it returns values that are blank.
0
votes
4answers
47 views

How to combine isset with is_array

I am using is_array function but need to use isset as well, as if nothing is selected I am get a undefined index error. I am still learning PHP so not sure how to combine what I have written with ...
0
votes
3answers
40 views

unable to understand the behaviour of the isset and empty in the following form

I have a form with username and password and the value gets posted to check.php when I have no input in username and password,(left blank), isset($_POST["username"]) and isset($_POST["password"]) ...
2
votes
3answers
39 views

Exit with error message in PHP/HTML

I am checking if a particular value is set using isset. I want to quit the HTML with displaying error message like "name not found , Enter a valid name". Currently I am checking like if ((! ...
0
votes
1answer
30 views

how to print error message in HTML/PHP?

I am checking if the particular parameter is passed and if a folder exists for that parameter. ex if ((! isset($_GET["name"])) or (! is_dir($_GET["name"]))) { print "----------------USER NOT ...
0
votes
3answers
71 views

How does isset() work?

I'm a beginner in PHP. In my code, i want the php script to be executed only when the submit button is clicked (set). So when the page is refreshed, the isset() function should return false. Here is ...
0
votes
2answers
62 views

isset() on codeigniter objects

How can I achieve something that looks like: if (isset($this->session->flashdata('user_profile'))) {} without: Fatal error: Call to a member function flashdata() on a non-object in ... The ...
0
votes
1answer
46 views

PHP login not working correctly

I'm fairly new to PHP and I can't seem to correct the following code. My acc_submit is located here: Pastebin Link EDIT I've figured it out haha, I was checking if the password was MD5 but it ...
0
votes
3answers
60 views

Check if variable is set and then echo it without repeating?

Is there a concise way to check if a variable is set, and then echo it without repeating the same variable name? Instead of this: <?php if(!empty($this->variable)) { echo '<a ...
0
votes
2answers
113 views

PHP if (isset($_POST['uname'])) not doing anything?

I have two pages. 1st page has two text forms like so: <form name="NameForm"> Name: <input type = "text" name = "uname"> Location: <input type = "text" name = "ulocation"> ...
-3
votes
4answers
67 views

Echo input in PHP [closed]

Can someone help me with this. Im trying to echo an input with isset as value in php but i'm getting difficulties with the commas. echo '<td><input class="text" type="text" id="txtLogin" ...
-2
votes
1answer
39 views

if (isset($var)) { } difficulty using isset

having difficulty using if (isset('prescription')) {'prescription'} in the below code: $query = " SELECT id, full_name, address, email, telephone, ...
-2
votes
2answers
38 views

custom empty() function

Today I've created a function called is_empty(). The function is similar to already existing empty() function - it adds a few more checks that are required by my script. However, now when I run the ...
0
votes
1answer
52 views

if isset for checkbox id?

I have a checkbox like this <input type="checkbox" name="power" id="electrical"> So, can I check in PHP whether the checkbox is checked or not like this if(isset($_POST['electrical'])) I ...
0
votes
0answers
22 views

Post file and isset is not working

I have a simple send form: <form enctype="multipart/form-data" method="post" name="entryform" id="entryform" action=""> <input type="text" name="title" value="" class="f_input"> ...
0
votes
1answer
28 views

php isset , empty , null , = “”

<div> <h2>How many services do you need ?</h2> <form action="<?php $_SERVER['PHP_SELF']?>" method="GET" name="fServ"> <input type="number" name="numServ" ...
-2
votes
4answers
46 views

php function return isset [closed]

Please can anyone explain what does this line means in PHP function UserFullName() { return isset($_SESSION['name_of_user'])?$_SESSION['name_of_user']:''; }
1
vote
2answers
50 views

My ISSET function returns FALSE but only for the second IF [closed]

/*if(isset($_POST['submit'])){ echo 'This one works just fine'; } else { echo 'I never get here!'; }*/ // Now, the If statement bellow is the one I wish to run. ...
1
vote
3answers
67 views

isset function undesired result

<?php if(isset($_REQUEST['fname'],$_REQUEST['age'],$_REQUEST['lname'])) { $file=fopen("guns.txt","w"); $str1=$_POST["fname"]; $str2=$_POST["lname"]; $age=$_POST["age"]; ...
0
votes
2answers
55 views

How to check three state (null, false, true) value?

I have such a piece of code: public function setValue($flag) { $this->value = isset($flag) ? (bool) $flag : null; } I assume, that $flag can denote either null, or false, or true. (The reason ...
2
votes
3answers
59 views

isset() evaulates to true even when the textfields are empty. Why is that?

The first snippet takes data from the two text fields and sends to action script.php. The problem is both the if statements evaluate to true even if I do not enter anything in the text fields. Why is ...
3
votes
4answers
57 views

Array file isset Incorrectly Returning False

I have the following PHP code: $haystack = file("dictionary.txt"); $needle = 'john'; $flipped_haystack = array_flip($haystack); if (isset($flipped_haystack[$needle])) { echo "Yes it's there!"; } ...
0
votes
2answers
46 views

Check an array value is set from another arrays values PHP?

I have an array like so which is built automatically and dynamic in length. $arr = array('k1','k2','k3','k4',); And I have an already existing array $exArr, how can I check dynamically the same as ...
0
votes
0answers
21 views

Testing Valid Storing the random String on a $_SESSION Superglobal

AS a part Of an exercise I'm trying to Store on PHP a Random String Created on a piece of code on top, Once I do create that I'm trying to store it in a $_SESSION superglobal, when I try to debug and ...
0
votes
1answer
42 views

php isset and is_null: problems with notset values and null-values in php condition

This is for preparing a string for a mysql-query. The problem is about the NULL. I want ONLY the 'd'-column to be NULL (if set as null in data-array). the problem is that 'isset' is false if null and ...
0
votes
2answers
80 views

Value not passed for textarea in ISSET

I pass values so that I can modify the contents of the database. When I pass text data flows and updates correctly. But for textarea data does not flow. The code in which I am passing is : echo ...
1
vote
2answers
80 views

test if a cookie has been set, php

I need to run a query only if a cookie wasn't set and it has just been set. (in other words, it is the first time the user visits the page) I tried the following: $cookiename = "item_".$itemid; ...
2
votes
2answers
222 views

PHP - Checking if array index exist or is null

Is there a way to check if an array index exists or is null? isset() doesn't tell you whether the index doesn't exist or exists but is null. If I do : isset($array[$index]) || is_null($array[$index]) ...
2
votes
2answers
65 views

Is there any reason to use isset()?

Why should I use if (isset($var)) {} rather than just if ($var) {}? It seems to do the same thing and just take extra processing. Thanks!
0
votes
2answers
40 views

Parsing an echo in php

I have an email form in php which has 3 possible appearances. Firstly, when the submit button has not been used, I want it to appear standard. Secondly, when submit HAS been clicked and no data was ...
2
votes
3answers
70 views

php testing isset() and empty() in a function

I am trying to encapsulate isset() and empty() in a function. It worked fine on my home development sever (apache 2.4.3, PHP 5.2.17 under WinXP). When I ported it to my university Linux machine ...
2
votes
3answers
83 views

Add to array if set

Is there a better/shorter way to do this? Each variable is a MySQL table value that is called. I have a main table and an override table, so call the first table, extract the resulting array, then ...
0
votes
5answers
112 views

validate options[] with isset

Hey i am having some trouble getting an options[] array to work, if anyone can help that will be great Form <form method="post" action="array2.php"> <select name="options[]"> <option ...
0
votes
1answer
85 views

Check boxes checked?

Now I've done a lot of research, tried a lot of methods in PHP, including $_POST isset.. foreach etc But i need some help! Basically, just want to check if the checkboxes have been checked. And ...
0
votes
3answers
76 views

!isset vs == null PHP, Singleton Class

the issue I'm wondering about may be more of a matter of style or what have you. I have a singleton class in PHP. When I check to see if the object has already been created, I simply do: ...
0
votes
2answers
92 views

PHP @ instead of isset to test a $_GET value

Give me one good reason to do this if( isset($_GET['key']) && ($_GET['key'] === '123') ) {... instead of this if( @$_GET['key'] === '123' ) {... I'm asking for this very specific code ...
0
votes
1answer
92 views

php header redirects not working

So, I consolidated various php login files from here into one file. to consolidate it to one file, I append the url, and do different things based off of what is appended. This works locally but not ...
0
votes
3answers
91 views

php if and isset and if variable is not set and doesnt exist

Possibly a strange one that I hope can be done in one line. I have to have an IF statement that will checks two things. The first checks if the variable $loggedInfo['status'] is set and is equal ...
0
votes
2answers
55 views

php extra line breaks showing up

I'm a total newbie with php. I'm returning some variables for an address and am checking to see if an address2 exists. If it's null, I want it to skip and not put an extra line in the formatting. But, ...
0
votes
4answers
71 views

How can I submit a form using an image in php

I want to submit a form to the database and I want to use a sprite image instead of regular submit buttons.. Here is the images I'm using <div class="cancel"> <a href="#" id='cancel_btn' ...
0
votes
0answers
22 views

Issue with phpmyadmin: isset function

So I didn't work a long time with php and now I tried to open an old site I made and it doesn't work anymore, I use phpmyadmin but the version changed, I know what the mistakes are: I didn't use if ...
2
votes
1answer
61 views

Need both isset and !='

I need both isset and !='' in a condition, if I dont use isset it gives warning and I need !='' for else condition. So I need to use both below code works well but dont return else, but when I ...

1 2 3 4 5 6