Click here to Skip to main content
15,902,189 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
GeneralRe: Linux tutorials Pin
N a v a n e e t h18-Jun-09 15:07
N a v a n e e t h18-Jun-09 15:07 
GeneralRe: Linux tutorials Pin
matjame18-Jun-09 22:04
matjame18-Jun-09 22:04 
AnswerRe: Linux tutorials Pin
Sebastian Schneider15-Jun-09 23:32
Sebastian Schneider15-Jun-09 23:32 
QuestionHow to get INR symbol "Rs". Pin
jaraldumary3-Jun-09 19:14
jaraldumary3-Jun-09 19:14 
AnswerRe: How to get INR symbol "Rs". Pin
Marc Firth3-Jun-09 21:54
Marc Firth3-Jun-09 21:54 
QuestionPHP misses url parameters Pin
platinum19123-Jun-09 12:15
platinum19123-Jun-09 12:15 
AnswerRe: PHP misses url parameters Pin
Marc Firth3-Jun-09 21:53
Marc Firth3-Jun-09 21:53 
AnswerRe: PHP misses url parameters Pin
fly9044-Jun-09 1:42
fly9044-Jun-09 1:42 
platinum1912 wrote:
if(isset($_GET["Letter"]))
{
    $Letter = $_GET["Letter"];
}
else
{
    $Letter = "";
}
if(isset($_GET["Industry"]))
{
    $IndustryID = $_GET["Industry"];
}
else
{
    $IndustryID = "0";
}


This could also be written like this:

$Letter = isset($_GET["Letter"]) ? $_GET["Letter"] : "" ;
$IndustryID = isset($_GET["Industry"]) ? $_GET["Industry"] : "0" ;


I like saving space with my code.

My failometer has shot off the end of the scale!

I seem to have misplaced my ban button.. no wait... found it!

GeneralRe: PHP misses url parameters Pin
platinum19124-Jun-09 8:28
platinum19124-Jun-09 8:28 
AnswerSolution Found Pin
platinum19124-Jun-09 12:00
platinum19124-Jun-09 12:00 
Questionphp Pin
mrs gbolagun1-Jun-09 4:44
mrs gbolagun1-Jun-09 4:44 
AnswerRe: php Pin
Marc Firth1-Jun-09 5:14
Marc Firth1-Jun-09 5:14 
GeneralRe: php Pin
mrs gbolagun1-Jun-09 23:28
mrs gbolagun1-Jun-09 23:28 
GeneralRe: php Pin
Marc Firth3-Jun-09 21:49
Marc Firth3-Jun-09 21:49 
GeneralRe: php Pin
mrs gbolagun4-Jun-09 1:23
mrs gbolagun4-Jun-09 1:23 
GeneralRe: php Pin
Marc Firth4-Jun-09 1:48
Marc Firth4-Jun-09 1:48 
AnswerRe: php Pin
Smithers-Jones3-Jun-09 1:46
Smithers-Jones3-Jun-09 1:46 
QuestionUnlock already mounted volume, on boot Pin
darkdragn31-May-09 14:33
darkdragn31-May-09 14:33 
AnswerRe: Unlock already mounted volume, on boot Pin
Moreno Airoldi1-Jun-09 0:33
Moreno Airoldi1-Jun-09 0:33 
GeneralRe: Unlock already mounted volume, on boot Pin
darkdragn1-Jun-09 7:10
darkdragn1-Jun-09 7:10 
GeneralRe: Unlock already mounted volume, on boot Pin
Moreno Airoldi1-Jun-09 7:20
Moreno Airoldi1-Jun-09 7:20 
GeneralRe: Unlock already mounted volume, on boot Pin
darkdragn1-Jun-09 9:18
darkdragn1-Jun-09 9:18 
GeneralRe: Unlock already mounted volume, on boot Pin
Moreno Airoldi3-Jun-09 0:28
Moreno Airoldi3-Jun-09 0:28 
GeneralRe: Unlock already mounted volume, on boot Pin
darkdragn5-Jun-09 2:23
darkdragn5-Jun-09 2:23 
GeneralRe: Unlock already mounted volume, on boot Pin
Moreno Airoldi5-Jun-09 2:38
Moreno Airoldi5-Jun-09 2:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.