Answer the question
In order to leave comments, you need to log in
How to remove push effect from input button in IE?
Good evening.
Fiddle problems (IE 10, IE 11). How to remove 3D effect on button click? Nothing helps. I read on stackoverflow, they recommend using button + span, but this is the last option.
There are ways? Maybe refer to the shadow dom of the browser? Tried input span, didn't help.
Thanks in advance.
Answer the question
In order to leave comments, you need to log in
Or like this:
$project_id = empty($_SESSION['selected_menu_item_id']) ? '' :
"tasks.project_id = ".$_SESSION['selected_menu_item_id']." AND";
$current_tasks_list_query = "SELECT
tasks.id AS ID,
tasks.name AS TASK_NAME,
tasks.deadline_datetime AS TASK_DEADLINE,
tasks.status AS TASK_STATUS,
projects.name AS PROJECT_NAME
FROM tasks
JOIN projects
ON tasks.project_id = projects.id
WHERE
$project_id
tasks.author_id = '".$USER['id']."'";
There are all sorts of useful functions for determining NULL values of the NVL/NVL2 type (Oracle), but I suspect that they are implemented differently in different DBMS. And yet the general meaning will be:
WHERE
(tasks.project_id = ".$_SESSION['selected_menu_item_id']."
AND tasks.author_id = '".$USER['id']."'")
OR (".$_SESSION['selected_menu_item_id']." <b>is null</b>
AND tasks.author_id = '".$USER['id']."'")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question