Jump to content

if statement depending on file page name?


Darkwoods

Recommended Posts

Hey im having troube making this code as i have no idea how to do it...

 

basically what im trying to do is for example if the index.php?id=XXX i want to echo "this" and if it is just index.php i want to echo "that"

 

your help would be nice thanks :)

 

		<?php
	$id_lang = $_GET['id'];
	if($id_lang == $id_lang){
        $result = mysql_query("SELECT * FROM pages WHERE id='$id_lang' ",$connect);
        while($row44 = mysql_fetch_assoc($result))
		{
			$js_langdir = $row44['lang_dir']; }}

	else{
	$js_langdir = "LTR";
				}
?>

Link to comment
Share on other sites

not sure if I understand your question fully but you might do this.

 

if (empty($_GET['id'])){
  echo 'this';  //this will be shown when someone types in  [url=http://lalalaala.com/index.php?id=monkeys]http://lalalaala.com/index.php?id=monkeys[/url]
}else{
  echo 'that';
}

 

You may want to add isset as well so you don;'t get an error;

 

if(!isset($_GET['id']) && empty($_GET['id']))

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.