Jump to content

Max Castril

Members
  • Posts

    30
  • Joined

  • Last visited

Recent Profile Visitors

1,814 profile views

Max Castril's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Sorted it! Changed submit from <input type="submit"> to <input type="button" value="Click me" onclick="msg()"> https://www.w3schools.com/tags/att_input_type_button.asp https://www.w3schools.com/css/tryit.asp?filename=trycss_form_button Works anyway but I still hate CSS😝.
  2. I have been trying to change the size, font, colour etc. of the submit button as it is too insignificant in my page. I tried this in W3Schools Tryit Editor but doesn't work: <!DOCTYPE html> <html> <head> <style> .submit { border-radius: 10px; width: 60%; font-family: "Times New Roman", Times, serif; } </style> </head> <body> <form action="/action_page.php"> First name: <input type="text" name="fname" value="John"><br> Last name: <input type="text" name="lname" value="Doe"><br><br /><br /> <input type="submit" value="Submit form"> </form> </body> </html> in https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_input_value Any ideas?
  3. @Ingolme - I thought all programmers used SciTE. What is the most popular one?
  4. Well, I copied and pasted the text to Notepad and uploaded it and got: string(2) "á" DONE!áTeclado: áRepuesta 1: áRepuesta 2: á Thanks to all for your help
  5. I am using SciTE This is the header for SciTEDoc.html (I cannot find how to see the text editor encoding.): <?xml version="1.0" encoding='utf-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="generator" content="HTML Tidy, see www.w3.org" /> <meta name="generator" content="SciTE" /> <meta http-equiv="Content-Type" content="text/html" /> <title> SciTE </title> <style type="text/css">
  6. string(1) "�" DID NOT!Teclado: �Repuesta 1:Repuesta 2:
  7. SciTE.exe donesuk - I tried this: <!doctype html><html lang = "es"><head><meta http-equiv="content-type" content="text/plain"></head><body> but no juice. Now have: <?php header('Content-type: text/html; charset=utf-8'); $char = 'á'; var_dump($char); $char2 = htmlspecialchars($char); $char3 = htmlentities($char); if($char3 == '&aacute;') { echo 'DONE!' . $char3; } else { echo 'DID NOT!'; } echo 'Teclado: ' . $char . '<br /><br />'; echo 'Repuesta 1: ' . $char2 . '<br /><br />'; echo 'Repuesta 2: ' . $char3; echo ' </body>'; ?> Still no juice
  8. I'm rapidly getting out of my depth here.
  9. Thanks Ingolme but it still doesn't work. I have tried evading the browser by this: <?php $char = 'á'; $char2 = htmlspecialchars($char); $char3 = htmlentities($char); if($char3 == '&aacute;') { echo 'DONE!' . $char3; } else { echo 'DID NOT!'; } ?> This code shouldn't be affected by the browser at all, but one interesting thing is that the browser doesn't even recognize the character: DID NOT!Teclado: �Repuesta 1:Repuesta 2:
  10. Just an oldie trying to keep his brain active by frying it in php! 

  11. Can you get https://www.w3schools.com/php/phptryit.asp?filename=tryphp_func_string_htmlentities to work on your computer?
  12. Hi everyone. Anyone noticed that htmlentities() aren't working in php? Nor are htmlspecialcharacters. See: https://www.w3schools.com/php/phptryit.asp?filename=tryphp_func_string_htmlentities Any ideas?? I have also written a quick and dirty test routine which I have run on my server: <?php if(isset($_POST['char'])) { $char = $_POST['char']; $char2 = htmlspecialchars($char); $char3 = htmlentities($char); echo 'Teclado: ' . $char . '<br /><br />'; echo 'Repuesta 1: ' . $char2 . '<br /><br />'; echo 'Repuesta 2: ' . $char3; } echo '<form action = "char_test.php" method = "post"> <input type = "text" name = "char" size = "6"> <input type = "submit" name = "submit" value = "Search!" /> </form>'; It runs but doesn't return any ASCII entities. HELP!! Max
  13. Hi there I am using MySQL in "phpmyadmin.eu.ionos.host" and want to change a column to 'UNIQUE' as I don't want to accidentally fill the table with repeat data using an erroneous php loop and each image must be unique. The table is: 2 Image char(200) utf8_unicode_ci SQL won't let me change the column to 'UNIQUE' as it says that there is a duplicate column 'Image'. The phpmyadmin SQL seems to be trying to add another column, which is what I dont want. 1and1 have very recently changed their software and there seem to be a lot of gremlins in it. Any comments?? Regards Max
×
×
  • Create New...