help with viewer.php?my-title-123

16 posts by 3 authors in: Forums > CMS Builder
Last Post: June 24, 2010   (RSS)

By efi-revivo - June 22, 2010

where i need to put this line?

Re: [efi-revivo] help with viewer.php?my-title-123

By Jason - June 22, 2010

Hi,

If you could attach the .php file you're working with and tell me exactly where you're experiencing the problem, I'll be able to give you a more specific solution.

Hope this helps.
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

By efi-revivo - June 23, 2010

i have a problem with any link
<a href="<?php echo $record['_link'] ?>">link-name</a>

in the html its look like this:
<a href="http://www.mysite.co.il/thenameofthepage.php?%D7%9E%D7%9C%D7%95%D7%9F+%D7%99%D7%A9%D7%A8%D7%95%D7%98%D7%9C+%D7%90%D7%92%D7%9E%D7%99%D7%9D-7">link-name</a>

i need to decode the link's that need to be in hebrew.

Re: [efi-revivo] help with viewer.php?my-title-123

By Jason - June 23, 2010

Hi,

Try this:

<a href="<?php echo urldecode($record['_link']); ?>">link-name</a>

That should take care of the problem for you.

Hope this helps.
---------------------------------------------------
Jason Sauchuk - Project Manager
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

By efi-revivo - June 24, 2010 - edited: June 24, 2010

its working but now i have space between the word's
1%202%203
and it's need to be
1+2+3

i fix it with this code:
<?php echo rawurldecode($record['_link']); ?>