Tagged Questions
-2
votes
1answer
31 views
using a switch to determine two php functions of mysql [closed]
i need help to switch between these two codes by a switch that will take place once a button is pressed. how is it possible if the buttons will be in different pages yet the delete function should ...
0
votes
2answers
103 views
SWITCH statement for profile picture uploads
I have a switch statement which determines the filetype of an image uploaded for use as an avatar in my application, however it seems to be a little faulty, insofar as it allows for a successful ...
1
vote
3answers
127 views
PHP switch inside a while loop
I am getting two of the same entry from my mysql databaseusing a PHP switch. I have isolated the problem to here, perhaps someone can indulge me? $mySQL->Fetch() just gets the next row in a query.
...
0
votes
1answer
86 views
PHP switching pages from a MySQL query
I have the following PHP code:
//switch
if (isset($_GET['pg']))
$pg = $_GET['pg'];
else{
$pg = 'home';
}
switch ($pg){
case 'home':
if (file_exists("pages/home.php")){
...
1
vote
3answers
90 views
MySQL case-when-then (or other ways) to check values of multiple rows
I request some help with MySQL when-then statement to fetch all the sid from the table after comparing multiple records having same sid but different cid-data values:
flag sid cid data
---- --- ...
1
vote
2answers
130 views
Switch Between two Seperate Table Queries PHP MySQL
I'm trying incorporate a "News Feed" into my site, pulling information from two different tables (Using two seperate queries). One feed pulls current stories "$newsfeed" and the other pulls history ...
0
votes
1answer
96 views
MySQL: query depending on field value - can CASE help build your query?
To make it easy, there are table1 (id, field1, other_table_id), table2 (id, field1) and table3 (id, field1). I have a SELECT on table1 but depending if the value of field1 = 2 or 3, it should JOIN ...
0
votes
1answer
66 views
Can't add a switch routine without error
This is a learning project for me and I have made a couple of inquiries on this site already which taught me quite a bit. But I am having problems with the "switch" routine and would appreciate any ...
2
votes
3answers
129 views
Is CASE practically useful for multiple UPDATEs in mysql?
It seems that the only way to use UPDATE for multiple rows is CASE as
UPDATE posts SET rates = CASE
WHEN post_id = '44' THEN rates + 'X'
WHEN post_id = '33' THEN rates + 'Y'
WHEN post_id = '73' THEN ...
1
vote
5answers
697 views
How do I use properly CASE..WHEN in MySQL
Here is a demo query, notice it is very simple, Fetches only where base_price is 0,
And still, it chooses the condition 3:
SELECT
CASE course_enrollment_settings.base_price
WHEN ...
0
votes
4answers
1k views
$stmt->bind_param($params) possible?
My function looks like that.
if (isset($_POST['type'])) {
switch ($_POST['type']) {
case "qsubject":
$sql = "SELECT id, name FROM chapters WHERE subject_id=?";
...
-2
votes
2answers
293 views
MySQL Query for Date Part
I have two tables...
tblEvent
--------
id
date
tblEventRecurring
-----------------
event_id
date_part
end_date
The relationship is I can have an event that is either on one day (date in tblEvent) ...
0
votes
1answer
581 views
Dynamically generate cases for switch statement using an array
I'm creating a script to auto generate an RSS feed for the various sections of my website. I've queried by database and have an array of data which represents each section called $showData. I'm using ...
1
vote
4answers
461 views
load css from database based on user preferences
I am currently trying to roll my own CSS style switcher for my basic intranet.
It's not hugely important, but I know a couple of employees have slightly poor eyesight and thought a high contrast ...
0
votes
3answers
203 views
Using order by clause and switch statement try and order a table depending on the value chosen from a drop down menu
I want to use a dropdown list to order the query result. Whatever option is chosen in the dropdown list, the query will be ordered in ascending order by the option selected. I am almost there but ...
1
vote
2answers
147 views
Using ORDER BY clause to order a query by using values selected from a drop down menu
I want to use a dropdown list to order the query result. Whatever option is chosen in the dropdown list, the query will be ordered in ascending order by the option selected. My query works fine, I ...
0
votes
3answers
330 views
php: looping thru results from mysql query to increment counter (associative array)
I'm retrieving data from a MySQL db and creating reports from it. I need to get counts when certain conditions are met, and since db queries are rather expensive (and I will have a lot of traffic), ...
1
vote
2answers
775 views
PHP Switch-statement using MySQL Query result
To make my life a bit easier, I created a function DoQuery:
// DoQuery
function DoQuery($sql)
{
global $cm_db_host,$cm_db_user,$cm_db_pass,$cm_db_name;
$con = ...
1
vote
2answers
458 views
Get list of MAC addresses on one port with SNMP WALK
I need to grab all the mac addresses that are on the same port.
Let’s say you have a basic router that is plugged into the wall. From that router two computers are plugged into those ports. I want to ...
2
votes
3answers
1k views
How to create a dynamic PHP switch statement from MySQL query
This is for adding images, categories and comments from an email to a photo gallery I'm working on.
I'm pulling the first two found category names out of an email message body and need to assign the ...
0
votes
6answers
188 views
How do I read a “,” as “<br />” in PHP/MySQL?
So I have this MySQL database and a table and in the rows there a lot of "," in them, and I wish when they are output on the screen with PHP to be switched to "" instead of coma, how do I do that?
I ...
5
votes
4answers
736 views
How to sort in SQL, ignoring articles ('the“, ”a', “an” etc)
This comes up a lot, and I can see it's come up on StackOverflow for XSLT, Ruby and Drupal but I don't see it specifically for SQL.
So the question is, how do you sort titles correctly when they ...
2
votes
1answer
3k views
SWITCH with LIKE inside SELECT query in MySQL-Resolved
I have this Tags table
CREATE TABLE IF NOT EXISTS `Tags` (
`id_tag` int(10) unsigned NOT NULL auto_increment,
`tag` varchar(255) default NULL,
PRIMARY KEY (`id_tag`),
UNIQUE KEY `tag` ...
1
vote
3answers
184 views
mysql_fetch_array() problem
So I have 3 DB tables that are all identical in every way (data is different) except the name of the table. I did this so I could use one piece of code with a switch like so:
function ...
0
votes
1answer
100 views
How much statement can be made conditional in MySQL?
the MySQL manual says that a CASE statement (the WHEN part) can contain a statement_list.
How much statement is that to be exact? I need to perform a pretty big query which I would like to ...
