Solution possible on php and \ or js

There is a f-I urlencode (php), which converts specials. characters in url code:

Returns a string in which all non-alphanumeric characters except -_. must be replaced with a percent sign (%)

And I need to encode Latin letters and numbers. Actually, you need to open the site with the login and password parameters (which need to be encoded).

  • input and output string example - Jean-Claude
  • $ login = "OIUGsefIUFEA"; $ password = "lmnkefLJfmw"; site.ua/… - Morozov Vladyslav
  • one
    No need to do so. - Qwertiy 2:19 pm
  • What can you advise? There is no access to the final site (where I transmit data). - Morozov Vladyslav
  • What is the purpose of this. From whom are you trying to hide the login / password? how the connection goes through the client’s browser or directly server-to-server. And yes, if the client sees it, then believe me, a lot of people can read% - Mike

0