Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/21/2021 in all areas

  1. Whilst this may be an assignment that you have been given, the principle is fundamentally wrong. The unique identifier (Primary Key) of a table should never change, from the moment the record is created, right up to the moment that the record is finally destroyed. People change their names. These two aims are incompatible, which is why so many database tables have a "surrogate", numeric identifier, the values of which just goes up and up [and up] forever. Furthermore, using Personal Data (i.e. part of a name) to create a [visible] identifier is distinctly questionable in these days of GDPR and similar legislation. Please use the "Code" button ("<>") when submitting code for others to look at - your image is very difficult to read. Your code manipulating ':email', ':lastname', etc. (line 30) is wrong. You should be using the POST'ed values here, not string literals that just happen to contain the names of the parameters. // This ... $email = ':email'; // ... should be ... $email = $_POST['email']; Regards, Phill W.
    1 point
  2. Okay, I understand gizmola. Not much has happened since last time. Lots of trouble in Norway again the last weeks due to the coronavirus and the new one, omikron. Now Norway is mostly closed down again from today. Now it so happens that before I read your recommendations, I had already created an account at 100 webspace. Therefore, I will use them for now, but have your recommendations and tips in mind. I will see if I can do a little now tonight before I go to work and broadcasting tomorrow early morning (yawn.) I will post the first thing I do as soon as I understand more of this 100 webspace thing.
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.