Skip to content

Opening a .html with window.location

I’m writing a simple login page in Ajax + Jquery I have an error when I click on the button. And I don’t understand why. Uncaught SyntaxError: Unexpected end of input At this line echo ‘<input type=”button” value=”connexion” OnClick=”window.location.assign(&#…

How to encrypt XOR hex string 32 in PHP

I’m trying to encrypt some of my passwords using the XOR encryption algorithm. I tested it on CyberChef but I don’t know how to convert it from PHP. I look forward to helping. Thanks a lot. XOR HEX string 32 Answer It helps to start with the basic data structures involved. Your objective is to use…

How can I echo ‘for’ loop here

I want to use $i into his PHP condition how can I do this? I have no idea how to echo into condition. plz see the code and if you can plz help me. thank you advanced. Answer To accomplish what you are trying to do, simply follow this example: becomes So you basically take the string you want (which

How to style echoed text?

I am trying to style the user, time and content. they only appear once the user has entered a comment into the website and so I cannot use <p> tags with inline CSS. any suggestions? Answer 1- create a class in your css (i.e: myClass) 2- use echo like this: echo ‘User: <span class=”myClass…