Jump to content

Recommended Posts

im trying to learn how to pass php variables in links, and im almost there except when im calling a php variable which happens to be a 'name' in a database, if there is more than 1 word in the name, it will only call the first word and not the whole name, is there any fix for this?

 

print "<li><font face=tahoma size=1><a href=blogread.php?blog=$field>$field</a></font></li><br>"; 

 

this is the line of code that passes it, and for instance, i made an example, the field name is 'this is a test' but only 'this' is passed, is there any way to pass 'this is a test' like, all the words???

thank you!

Link to comment
https://forums.phpfreaks.com/topic/150575-solved-php-variable-in-link-issue/
Share on other sites

print "<li><font face=tahoma size=1><a href=\"blogread.php?blog=$field\">$field</a></font></li><br>";

 

Should work, if not look into using urlencode on $field inside the link.

 

print "<li><font face=tahoma size=1><a href=\"blogread.php?blog=" . urlencode($field) . "\">$field</a></font></li><br>";

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.