Jump to content

problem using echo and variables with spaces


pasturepool

Recommended Posts

Hello,

 

I'm trying to dynamically display a URL which contains a variable pulled from a query.  I can get the link to display properly except that if the variable value in question contains a space, then the value is truncated. 

 

For example,

 

if($whcty='US') {

 

echo ("<a href=page.php?value=");

echo "$variableis;";

echo (">Click Here</a>");

 

} else

 

{

echo ("<a href=/dir/page.php?value=");

echo "$variableis;";

echo (">Click Here</a>");

}

 

 

Everything works fine if the $variableis does not contain spaces.  For example,

 

If $variableis = Some Value

 

  the resulting URL = page.php?value=Some

 

How do i get the URL to show:

 

page.php?value=Some Value

 

 

thank you!!!

 

 

 

 

 

Link to comment
Share on other sites

To start with, if ($whcty='US') { assigns 'US' to $whcty, so it will always equal true.

 

Secondly, your php is outputting invalid html

 

Thridly, you code could be allot more consise. eg;

 

if ($whcty == 'US') {
  echo "<a href='page.php?value={$variables}'>Click Here</a>";                   
} else {
  echo "<a href='/dir/page.php?value={$variables}'>Click Here</a>";      
}

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.