Git Product home page Git Product logo

Comments (3)

jbroadway avatar jbroadway commented on August 25, 2024

What version of PHP are you using? In PHP 5.3.15 on OSX, I can run this:

<?php

require_once ('URLify.php');

echo URLify::filter ('foo & bår') . "\n";
echo URLify::filter ('foo &amp; bår') . "\n";

?>

And the output is:

foo-bar
foo-amp-bar

from urlify.

mantoze avatar mantoze commented on August 25, 2024

my php version 5.4.17
i test like you, ang get the same output:

|foo-bar
foo-amp-bar|

but i call URLify with ajax:
$("[id^='name_']").bind('input',function(){
elval = $(this).val();
elname = $(this).attr('id');
$.ajax({
type: "POST",
url: "?aid=10",
data: "val="+elval,
dataType: "json",
cache: false,
timeout: 50000,
success: function(data) {
$('#link_' + elname.substr(elname.length -
1)).val( data.val );
},
error: function(x,t,r) {
if ( t == "timeout" ) alert('Timeout: internet
connection slow.');
}
});
});
and got this:

On 2013.09.04 20:56, Johnny Broadway wrote:

What version of PHP are you using? In PHP 5.3.15 on OSX, I can run this:

|<?php

require_once ('URLify.php');

echo URLify::filter ('foo & bår') . "\n";
echo URLify::filter ('foo & bår') . "\n";

?>
|

And the output is:

|foo-bar
foo-amp-bar
|


Reply to this email directly or view it on GitHub
#13 (comment).

from urlify.

jbroadway avatar jbroadway commented on August 25, 2024

It looks like you just need to add an encodeURIComponent() like this:

data: "val=" + encodeURIComponent (elval),

Hope that helps.

from urlify.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.