Jump to content

LeonLatex

Members
  • Posts

    396
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by LeonLatex

  1. Since the first time i came over to FileZilla from WS FTP, I have always missed the short cut key for uploading files. Does it exist?
  2. Thats right. It looks like that. I will make a drawing and post it.
  3. I want it to be about 300 px wide and the and to be top aligned in the right top. I have tried so much and seen me blind on all the troubles, so i have to ask about help. By the way. For some reason it also partly hides under the scroll bar. Can you help me, plesase? <link rel='stylesheet' href='https://www.w3schools.com/w3css/4/w3.css'> <!--style login table start--> <style> .div-table { float: right; display: table; width: 40%; border: 0px solid #666666; border-spacing: 0px; /*cellspacing:poor IE support for this*/ } .div-table-row { display: table-row; width: auto; clear: both; } .div-table-col { float: right; /* fix for buggy browsers */ display: table-column; width: 200px; background-color: #cccccc; } </style> <!--style login table end--> <div class='w3-right w3-top'> <!--login table--> <form id="form1"> <div class="div-table"> <div class="div-table-row"> <div class="div-table-col" align="right">E-mail</div> <div class="div-table-col">Passord</div> </div> <div class="div-table-row"> <div class="div-table-col"><input class='w3-input w3-tiny w3-border w3-left w3-card-4' style='width: 8%;' type="text" Style="width;150px;" name="email"></div> <div class="div-table-col"><input class='w3-input w3-tiny w3-border w3-left w3-card-4' style='width: 8%;' type="password" style="width=150px;" name="password"></div> <div class="div-table-col"><button class='w3-btn w3-small w3-light-grey w3-right'>LogIn</button></div> </div> </div><br> </form> <!--login table end-->
  4. Of course 😛 I just quickly looked through the source code 🙂
  5. the forum you use, is it self-developed or a downloadable forum? I quickly tried to look through it, but found no info about it. Is it a public forum does it cost anything or is it free?
  6. I am asking for: Is there somebody who have knowledge or experience with editors within the genre PHP and MySQL(i/POD)? Actually, I only need an editor for PHP, but an editor that is for SQL / MySQL can also be interesting and a bonus, preferably that can also be nice to learn from. Does anyone got a tip or an advice for me ?
  7. Thanks to you both dodgeitorelse3 and requinix. Just what i needed.
  8. ⁠👍⁠⁠ No worries mate ⁠😃⁠
  9. I'm wondering the following: What is the name of the "PHP language / in the PHP environment" when you want to develop / have developed a project (eg a CMS) that retrieves all underlying pages to be displayed in only one file, such as and file index.php? For example. http://ww.domain.com/my_directory/?p and retrieving what is referenced in one and the same file. when you call something via "?p" (p is a example). Hope you understand what I mean because I can not describe this better in English. It's like sending a query (? P) and retrieving what is referenced in one and the same file.
  10. Because i cant find out how to write it with the w3 css. Actualy i am used to write my own css script files, but trying to learn w3 css. <input class='w3-input w3-border w3-light-grey w3-right' type='text' name='email'>
  11. <input class='w3-input w3-border w3-light-grey w3-right' type="text" name="email">
  12. I can control the width, but not the height. How can I set the height of a <input type="text">element with the w3 css?
  13. Yes, thanks for your help 🙂
  14. If this is posted in the wrong place, I apologize, but thanks for the help. This applies to MySQL Workbench. I have used MySQL Admin before, but have never been happy with it as a full-featured tool. After I met Mr. X in here (who I do not want to identify if he does not want to himself) who knows workbench well is probably happy to help me, but I have put too much on his shoulders from before with help to MySQL and PHP, so I am afraid (humble) asking too much. But .... so to my question: How can I have MySQL Workbench to show me a chart, a diagram/map of my database tables? The Workbench already has a connection to my MySQL database on my external server, or is it not possible as it is in MySQL Admin and work online directly on the server as its installed localy on my pc? I get all the tables in the database up on my computers screen, but not the diagram / map of all the tables?
  15. What i wanted to say, i couldnt find a link like the one Barand have. will look again and as fast i find a link like the one Barand has i will donate you the same amount. EDT: I found a link. I have now donated you both 100 NOK
  16. yes, i was thinking about it after i asked the question. So maybe i should forget it.
  17. Sets up a mysqli connection script which I retrieve with included. If a user enters the wrong password or username then the connection to the database will be interrupted, and a message will be given about this. I want to do this in a different way. I want the .php connection script to work so that the script lets me or the ser know if it is the password that is incorrect or the username that is not authenticated. This way the user can find out if he / she has entered the wrong password or username. If both are incorrect, notice of this will be given. connection file is a fairly standard script. I have no clue about how to solve this problem. Is it posible at all? Do you know how to do it? <? $servername = "localhost"; $username = "username"; $password = "password"; // Oppretter tilkobling. $conn = new mysqli($servername, $username, $password); // Kontrollerer tilkoblingen. if ($conn->connect_error) { die("Tilkoblingen feilet: " . $conn->connect_error); } echo "Tilkoblingen var vellykket"; ?>
  18. Ahaaaa... Then I understand why I did not remember this from either mySQL (SQL) or PHP. Did not find anything about it online nor other than what you say is the meaning of FUBAR. Still, I had to ask in case there was something important I had forgotten or overlooked.
  19. Thanks to both of you. You have really helped me along the way with the database. Barand got me started with his ideas, and then gizmola came up with some add-ons that were in my head as add-on features to enter into the database later. It was the addition of gizmola that was missing to get this to vote. With the table berthBoat I will easily be able to add these extra features afterwards. gizmola and Barand, you are talking about something when you talk about how the system in the boating association is. It is thus the case that there is an association with permanent members where the membership is year-based, but continuously until the member terminates the membership. That is, you receive an invoice once a year. This applies to both support members who are without a boat or a member with a boat and berth. Possibly in anticipation of berth becoming vacant (then the member is listed in a waiting list). I will probably need some help with this waiting list later as well, but it will come when the rest of the system is ready for it. As it has been suggested from their side until now is completely in my street for how the system should be, what data should be stored and retrieved etc. Just like a history section about each member. The plan is for each note to be saved each year before it is deleted. It will not be deleted permanently, but transferred to a separate table for a register for posterity, but which will not have a negative effect, only storage of what a person has done, etc. if you understand what I'm talking about. A lot of this is in PHP scripting as well, these are some of the plans for my boat association's system. I will also include some functions with regard to invoicing directly from the member list. This is far into the future. I'll now give you both a small donation. It's not much, but that's what I can do now for this time (gizmola) I did not get to donate anything to because he does not have a paypal account). Hope there is so much that I can get more help when I need it Barand. This system is becoming more advanced than first thought. Ideas are created as time goes on. Thanks for the help so far. P.S. What meens FUBAR?
  20. Thanks. neither do I like phpMyAdmin. I will try out MySQL WorkBench.
  21. Barand, thank you soooooo much. I am on the right way now i can see. Just what i needed. Hope i can come back to you for further questions. What kind of MySQL GUI do you use for draving the database?
  22. Zane, thanks for your reply. I can try to answer. It so happens that I have a membership database for a boating association with members. These members must be / are linked to a number, which is the berth on the pier they belong to. This number is determined by me and I want there to be ID in the table (s). This is basically what I want to do in the first place, but which I do not understand how to do. Secondly, I want these numbers / berths to be able to be used again. When a member is deleted because he acquires a boat that is larger or smaller, a berth / number on the pier is released. This number must be able to be used again by others when a member is deleted and transferred to another berth, and another jetty number that is available. Hope you understood a little more of what I meant now. I think Barand is talking about something in his proposal. I'll check out and see what I come up with. I will definitely come back with more questions, about this issue or a new question, and I will certainly be able to help solve other people's problem as time goes on. I'm new to both the site here and MySQL and PHP. I will also eventually be able to contribute with donations. What is a normal sum and donate to those who help me. Will not seem like someone who is stingy and gives too little, but I do not have much money to give away. So how much is accepted as enough money when i donate?
  23. How do I get the my MySQL database to enter my number system to assign an ID number space that goes from 01, 02, 03 etc. from 10 and up to 99 there should still be two numbers as in 10, 11, 12 etc. From 100 three numbers as in 100, 101, 102 etc. When a member is deleted from the list, the number must be able to be used again. I tried a few different solutions here, but managed to delete everything in the end. Only the databases are left. These numbers should not only be reusable, but also reusable and automatically dialed when the member registers. As I said, the number will be automatically chosed if it is available. They must also be transferred and selected into other DBs as the ID already assigned as. Exactly this part of the database I am struggling with now. If you do not understand what I mean, please ask me. I will answer as best I can. Thanks for the help you give me.
×
×
  • 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.