Jump to content

zer0uk

Members
  • Posts

    36
  • Joined

  • Last visited

zer0uk's Achievements

Member

Member (2/5)

0

Reputation

  1. You was right use $_POST .. below works fine $message = '<p>Thanks for creating an account your username is - </p>' . $_POST['username'] . '<p>Please click the following link to activate your account : <a href="' . $activate_link . '">' . $activate_link . '</a></p>'; Thank you
  2. thanks kitchen , I made the changes you suggested but still the icon doesn't activate the picker <div class="container"> <div class="row"> <div class="card grey lighten-3 z-depth-5"> <div class="card-content"> <form action="add_record.php" method="POST"> <h3 class="center-align teal-text text-accent-4">Log a race</h3> <br> <div class="input-field col s12 m8 l7 xl7"> <i class="material-icons prefix datepicker-trigger">calendar_today</i> <input type="text" name="r_date" class="datepicker"> <label for="r_date"></label> </div> <script> $(document).ready(function(){ $('.sidenav').sidenav(); $('select').formSelect(); $('.datepicker').datepicker({format: 'yyyy-mm-dd'}); $('.datepicker-trigger').click(function(){ $(this).next('.datepicker').datepicker('open'); }); $(".dropdown-trigger").dropdown(); }); </script>
  3. Hi is it possible to make the Icon for my input activate the date picker (I'm using Materialize for my class) A lot of users seem to instinctively try to click the icon rather than the input field on mobile devices <div class="input-field col s12 m8 l7 xl7"> <i class="material-icons prefix">calendar_today</i> <input type="text" name="r_date" class="datepicker"> <label for="r_date"></label> </div> <script> $(document).ready(function(){ $('.sidenav').sidenav(); $('select').formSelect(); $('.datepicker').datepicker({ format:'yyyy-mm-dd' }); $(".dropdown-trigger").dropdown(); }); </script>
  4. Hi the below is part my code which generates an email to the user asking them to authenticate, all works fine however I want to add the new user name to the email, one for politeness but more importantly so the user has a email with the login id. I have been trying to edit my code and insert the value of the variable $var_username within the message but totally no luck figuring it out, any help appreciated. the bit of code is below $var_username = $S_POST['username']; $message = '<p>Hello</p>' . "$var_username" . '<p>Please click the following link to activate your account : <a href="' . $var_username . $activate_link . '">' . $activate_link . '</a></p>';
  5. Fixed it using the original code you gave me Barand might not be pretty (?) but its doing the job thanks for all your help (think I learned a few things) <script type="text/javascript"> $().ready( function() { $("#firstname ").change( function() { makeUsername() }) $("#surname").change( function() { makeUsername() }) }) function makeUsername() { var c = " " var b = $("#surname").val().substring(0, 1).toUpperCase() var bb = $("#surname").val().substring(1, 15).toLowerCase() var a = $("#firstname").val().substring(0, 1).toUpperCase() var aa = $("#firstname").val().substring(1, 15).toLowerCase() $("#username").val(a+aa+c+b+bb) } </script>
  6. Thanks sadly that made everything go to caps.. However I have fixed it , I revisited the code I was using to make the username and tweaked it (it probably rubbish but its doing the trick) new code is <script type="text/javascript"> $().ready( function() { $("#firstname ").change( function() { makeUsername() }) $("#surname").change( function() { makeUsername() }) }) function makeUsername() { var c = " " var b = $("#surname").val().substring(0, 1).toUpperCase() var bb = $("#surname").val().substring(1, 15).toLowerCase() var a = $("#firstname").val().substring(0, 1).toUpperCase() var aa = $("#firstname").val().substring(1, 15).toLowerCase() $("#username").val(a+aa+c+b+bb) } </script>
  7. Sorry, thanks for the help but I don't fully follow .. (to new to all this and a lot to take in) I just want to Capitalize the input field when the user types in their name ... <label for="firstname"> <i class="fas fa-user"></i> </label> <input type="text" name="firstname" placeholder="Firstname" id="firstname" required >
  8. Thanks but I was looking for Java script as this is part of a user registration form so I wanted the user to see the name update as they type, ucfirst is php so would only update after the page is ran / refreshed wouldn't it ? Thanks
  9. Hi can anyone help with this please ? I want the below script to Capitalise just the first letter of each name .. so make james brown into James Brown really appreciate any help as this is driving my mad. <script type="text/javascript"> $().ready( function() { $("#firstname ").change( function() { makeUsername() }) $("#surname").change( function() { makeUsername() }) }) function makeUsername() { var c = " " var b = $("#surname").val().substring(15,0).toLowerCase() var a = $("#firstname").val().substring(15,0).toLowerCase() $("#username").val(a+c+b) } </script>
  10. Hi can anyone help with this please ? I want the below script to Capitalise just the first letter of each name .. so make james brown into James Brown really appreciate any help as this is driving my mad. <script type="text/javascript"> $().ready( function() { $("#firstname ").change( function() { makeUsername() }) $("#surname").change( function() { makeUsername() }) }) function makeUsername() { var c = " " var b = $("#surname").val().substring(15,0).toLowerCase() var a = $("#firstname").val().substring(15,0).toLowerCase() $("#username").val(a+c+b) } </script>
  11. Well actually ... I slightly modified your code so it included a space, but what I'd really like it to do is make the first letter upper case so "James Brown" could someone please help me with that ? <script type="text/javascript"> $().ready( function() { $("#firstname ").change( function() { makeUsername() }) $("#surname").change( function() { makeUsername() }) }) function makeUsername() { var c = " " var b = $("#surname").val().substring(15,0).toLowerCase() var a = $("#firstname").val().substring(15,0).toLowerCase() $("#username").val(a+c+b) } </script>
  12. see what I mean ?
  13. Its not that simple TBH
  14. sorry .. so if using a mobile and I pick say J Manchester a different option is nearly always picked , does that make more sense?
  15. Hello all, Can anyone help me , the below code which creates a drop down list for a user works fine on a desktop but on a mobile seems to be random the course it selects Thanks in advance <?php // database connect include('../db_connect.php'); // We need to use sessions, so you should always start sessions using the below code. session_start(); // If the user is not logged in redirect to the login page... if (!isset($_SESSION['loggedin'])) { header('Location: login.php'); exit(); } // if submit button selected run code if(isset($_POST['submit'])){ $_SESSION['district'] = $_POST['district']; header('Location: add_d_choice.php'); } ?> <!DOCTYPE html> <html> <!-- Compiled and minified CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"> <!-- Compiled and minified JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> <!--Import Google Icon Font--> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <header> <?php include('../menu.php'); ?> </header> <body bgcolor=#fafafa> <br> <br> <div class="container"> <div class="row"> <div class="card col s10 m8 l6 xl4 push-l3 push-m2 push-s1 push-xl4 z-depth-5"> <div class="card-content"> <div class="input-field col s12 m12 l12 xl12"> <form action="add_choice.php" method="POST"> <select name = "district"> <label>Select District you raced at</label> <option value="" disabled selected>Choose your district</option> <option value="Z">Zwift TT - Z</option> <option value="">--------------------</option> <option value="A">Central A</option> <option value="B">East - B</option> <option value="C">Lincolnshire - C</option> <option value="D">Liverpool - D</option> <option value="E">London East - E</option> <option value="F">London North - F</option> <option value="G">London South - G</option> <option value="H">London West - H</option> <option value="J">Manchester - J</option> <option value="K">Midland - K</option> <option value="L">North - L</option> <option value="M">North East - M</option> <option value="N">South East Midlands - N</option> <option value="O">North Midlands - O</option> <option value="P">South - P</option> <option value="Q">South East - Q</option> <option value="R">South Wales - R</option> <option value="S">South West - S</option> <option value="T">Teeside - T</option> <option value="U">West - U</option> <option value="V">Yorkshire - V</option> <option value="W">Scotland - W</option> <option value="Y">National - Y</option> </select> <input class="btn teal accent-4" type="submit" name="submit" value="Submit"> <br> <br> </form> </div> </div> </div> </div> </div> </div> <!-- Javacript --> <script src=https://code.jquery.com/jquery-3.4.1.min.js></script> <!-- Compiled and minified JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script> <script> $(document).ready(function(){ $('.sidenav').sidenav(); $('select').formSelect(); $('.datepicker').datepicker(); $(".dropdown-trigger").dropdown(); }); </script> </body> <footer> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <?php include('../footer.php'); ?> </footer> </html>
×
×
  • 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.