0
votes
1answer
33 views

Redirect Loops in Switch Case with header(location)

<?php $rexgeoip = new RexGeoIp; $iso = strtoupper( $rexgeoip->getCountryIso() ); switch ($iso) { case 'DE': header("Location: http://www.domain.de/en/",TRUE,301); ...
0
votes
3answers
44 views

PHP switch case $_GET's variables and switch case $_GET's variable's values

Say I have an URL like www.mysite.com/index.php?login=0. Is it possible to switch case $_GET's variables and switch case $_GET's variable's values? Something like: switch ($_GET) { case 'login' ...
1
vote
1answer
60 views

How correct code in wodpress sidebar to show only posts from last 1 month from category

I started to work on one website after another developer and I don't understand how to make popular widget to show only posts from last 3 months from categories(1 month for category news). I see ...
0
votes
3answers
33 views

PHP: Switch check same value from multiple variables

I am setting Switch to select font family for multiple places. For instance for body and for paragraph. Both has own selection dropdown but same font family. Means body as arial, tahoma, verdana than ...
0
votes
2answers
36 views

Is it possible to use multi conditions in PHP switch resultant with multi actions (executible codes)?

Is it possible to use multi conditional statement in PHP (switch) resultant with multi conditional (executable codes)? The code might be look like this: In case of $fifth only was 9, $fifth -= ...
0
votes
2answers
56 views

Switch case logical expression statement in Java - versus JS or PHP

in JavaScript and also I've seen it in PHP : You can use a logical expression inside you cases : For Example : switch(true){ case (d<10): document.write("Less than 10"); break; case (d==10): ...
0
votes
1answer
53 views

Generate PHP switch based on folder content

Let us say I have a folder containing 3 files; file1.php, file2.php, file3.php. In the same folder, I have index.php, which I want to generate switch cases for each file. $files = array(); $folder = ...
1
vote
2answers
53 views

Comparing Array Key values to determin conditional statements the OOP way?

I have been looking at this problem for quite sometime and finally created my answer. I have three array keys that will output different values. The condition of each key will either be true or NULL ...
-1
votes
0answers
21 views

MySQLi Fetch Assoc Returning Null

Here is my code: `final public function getSetting($z) { global $db; $q = $db->query('SELECT * FROM `zip_settings` WHERE variable = "{$z}"'); while($return = ...
0
votes
1answer
64 views

Use php switch statement to show selected item [closed]

We are meant to display only the selected item in a problem for a class. We built an html menu with drop down menus for the days and the items, then the price is input. On the bottom there is another ...
0
votes
1answer
24 views

PHP Routing: use SQL result as “router”

I have the following index.php: <?php $uri = $_SERVER["REQUEST_URI"]; require_once "sql.php"; $link = mysqli_connect($host, $user, $pw, $db); $urls = $link->query("SELECT URL FROM TEST"); ...
1
vote
4answers
35 views

switch case isset triggered when case is -not- set

--Let me add this. This code works for me the way it is. I just do not know why it works.-- I can't figure this out. switch ($_SERVER['QUERY_STRING']) { case isset($_GET['test0']): echo ...
0
votes
2answers
43 views

Switch/Break indenting in PHP [closed]

I have a really dumb question and not really important but it has been bugging me for quite some time: how do I indent "correctly" the "break;" inside a switch statement in PHP? Like this: case ...
0
votes
2answers
38 views

How to use variable name in a switch statement?

Can I somehow simplify my code below and use only one switch statement? It looks like I need 3rd switch so it would be great to use only one if possible. $input_separator= ...
-1
votes
4answers
37 views

Register form Error Correction in PHP - Best solution?

I'm looking for as simple approach to correcting errors such as non-matching passwords and people inserting blank data into a form in HTML. I want to use PHP to throw me back an error when this ...
0
votes
2answers
26 views

Code failing to pass query criteria to URL

My problem is that since I added the SWITCH function to the code for quering with cat_id the code can no longer pass the query criteria to the URL for paginating. cat_id is a categoryID which is saved ...
0
votes
1answer
33 views

php Switch statement and 0

Hi i see a code today like that $i=0; switch($i){ case 'TEST': print "Test";break; case 0: print "0";break; } The normal output seems to be 0 but it prints Test. Then i try to understand ...
0
votes
3answers
35 views

How can I make my function execute even when no parameter is entered?

I'm teaching myself PHP through a book and to make this easier I made myself a function to save myself having to write echo "<br/>"; a million times. My function works fine but after ...
0
votes
1answer
38 views

Pass value thought switch case php in wordpress

HI I'm making a metabox plug for wordpress and get a problem: when getting the info from the meta box (metabox has a text area and a radio) I use: foreach ($rian_meta_box['fields'] as $field) { ...
1
vote
1answer
52 views

PHP preg_match: linking single or multiple images via class function

Hey fellow programmers, What I'm trying to accomplish is a dynamic way to source images from a directory with the use of a class image. I'm stuck at supplying an exact string which returns a match ...
1
vote
1answer
41 views

php use switch within echo statment

I need to use a statement like switch within echo statement I found a way for this ,but i think this is not the best way for this when we want to use IF inside echo,write some thing like: echo ...
0
votes
1answer
27 views

Better implementation of custom user navigation

I have code that generates user navigation depending on a single variable, the users sector id, this is selected when they sign up on the site. I query the users profile to get the sector id. With ...
0
votes
3answers
119 views

PHP: switch vs if [duplicate]

Which form is more efficient This one: switch($var) { case 1: break; case 2: break; } ..or this one: if( $var === 1 ) { } elseif( $var === 2 ) { } in terms of performance?
1
vote
2answers
32 views

switch using $_SERVER['HTTP_HOST'] always defaults to first

I have the following code: <?php echo $_SERVER['HTTP_HOST']; // CONFIGURATION ITEMS $captcha_private_key = ''; $captcha_public_key = ''; switch ($_SERVER['HTTP_HOST']) { case ...
0
votes
2answers
44 views

php switch am I doing it wrong?

I'm trying to make multiple pages in 1 file and i have this <? switch($action){ case "add": add(); break; default: hello(); break; } function add() { ...
3
votes
4answers
58 views

Change href based on URI using PHP

I'm trying to make a main menu bar link dynamic, based on the visitor's current page. I started with $path = $_SERVER['REQUEST_URI']; Which, of course, returns things like /subfolder/page.html ...
13
votes
4answers
319 views

PHP If/ELSE or Switch/Case Statement

I have give inputs which can be either 1 or 0 $no_required $on_arrival $schengen_visa $uk_visa $usa_visa I have the Following Cases and i want to display unique message back to the user for each ...
0
votes
2answers
88 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 ...
0
votes
4answers
69 views

Multiple if statements in PHP

I know that this is not the way to do it but I'm having some trouble trying to set a variable using conditional statements. For some context, $foo, $foo_1 and $foo_2 are checking to see if a form ...
1
vote
2answers
82 views

How to understand strange behavior of switch stament? [closed]

I have this function private function getCurrencyByCountry($country){ switch($country){ case "US": return "USD"; break; case "UA": return "UAH"; break; case "FR": ...
1
vote
1answer
38 views

'or' operator inside switch PHP [duplicate]

Well, I think this is kinda weird but I would like to know if I can use the 'or' operator inside a switch something like this: $pet = 'cat'; switch($pet) case 'cat' or 'Cat': echo 'Is a ...
-1
votes
2answers
330 views

php contact form send to specific email depends on user selected option

I'm having problem in my send contact php file. I wanted the email to send based on the subject the visitor choose, for example: Padicure Booking subject the email will send to booking@example.com ...
-2
votes
1answer
64 views

PHP foreach - switch/case - if [closed]

Hi all and THX for help. I have a situation then i need to return value from switch/case but i can't do it. It's easy but ??? My code is like this. <? if (is_array($all_data)) { foreach ($all_data ...
0
votes
1answer
46 views

PHP check infinity inside switch

The following code: switch ($value) { case INF: $x = 'INF'; break; case -INF: $x = '-INF'; break; case NAN: $x = 'NaN'; break; default: break; } doesn't work ...
0
votes
1answer
83 views

Switch statement not working with multiple cases

I have a switch statement that is "linked", for lack of a better term, to a onClick event. When there is one case in the switch, it works. When all four cases are active, none of them work. Thank you ...
-1
votes
3answers
114 views

Why does the switch statement execute a case block even when a match is not found?

switch(1){ case 1: print 1; // prints 1 (as expected) case 2: print 2; // prints 2 (even though match is not equal?) case 3: print 3; // prints 3 (even though match is not equal?) } I ...
1
vote
2answers
59 views

foreach with xml and switch

I have an XML file which look like this: <services> <service> <code>MODULE_1</code> <name>Regular</name> <price>14.85</price> ...
0
votes
2answers
36 views

php if statements how to

So I've looked on various help sites but no one seems to be having the same problem as me, let me explain after my code: $pgint=$_POST['pg']; echo '<li><h4>Insects and ...
0
votes
2answers
54 views

php switch code error [closed]

i having an error came out each time i echo this on my index.php below is my switch code, as i'm using php dynamic site hence i use switch to change the data each time when different php is call. ...
1
vote
2answers
69 views

PHP : Showing days left with function and switch [closed]

I'm having a problem with my first PHP function with days left when calling a function. Here is my code: <? $_today=date("Y-m-d"); $day_left=ceil(strtotime($_exp)-strtotime($_today)/86400); ...
1
vote
1answer
29 views

Problems with a PHP function involving a switch statement [closed]

I'm getting a syntax error, "unexpected ':' on line 38", I can't figure it out: public static function clearTasks($type){ $con = taskDB::connectDB(); switch ($type){ /* line 38: */ ...
-2
votes
2answers
172 views

header location doesnt work in php 5.3.21 [duplicate]

My header location fails to work on a server wich uses php 5.3.21. It does work on a localhost with 5.4.7. It is backwards compatible.. can anybody tell my why this is wrong? switch ($table) { ...
-1
votes
3answers
125 views

switch with preg_match return true if string is empty

i've a problem with a switch and a preg_match case my code is like this switch( $WORD ){ case ( preg_match("/^(?:.+-)?(\d+?)$/i", $WORD , $ID ) ? true : false ): echo "valid ". $ID ." ...
1
vote
2answers
78 views

Foreach $_session[array] then using the result as a switch - case value [closed]

I have this code <?php session_start(); switch($sb) { foreach ($_SESSION['myarray'] as $result){ case $result: echo "id"$result; break; } } ?> This is giving me the ...
-1
votes
4answers
272 views

How convert @ IF isset($_POST[]) AND isset($_GET[]) @ via SWITCH

I have the following code: if (isset($_POST['test1']) && ! empty($_POST['test1'])) { $test1 = $_POST['test1']; } elseif (isset($_GET['test1']) && ! empty($_GET['test1'])) { ...
1
vote
3answers
111 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
58 views

PHP Switch giving first row not selected radio

I have a loop that displays documents in a table with a radio button. Once selected I want it to display reset of the data. Right now when I click the radio button it will only display the first row ...
0
votes
1answer
76 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")){ ...
-2
votes
1answer
111 views

Php switch statments [closed]

Within the code below i attempting to make the drop down menu ((see below)) connect to different where statements from the same data base.Any advice is great thanks!! <select name="select" ...
0
votes
0answers
70 views

PHP Switch from loop

Im looping through a database from a Query. This loop displays a list of Object Names and sets the Object Value as the Radio Value. What I have is a table. It should display the reset of the query ...

1 2 3 4 5 7