Jump to content

ITNerd1001

New Members
  • Posts

    3
  • Joined

  • Last visited

ITNerd1001's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I't not going to post anymore on here if I keep getting harassed by someone who knows EVERYTHING and is better than everyone else. Please grow up and get a life.
  2. Im not asking you to write my code for me I simply asked for help. This is 1 of 14 queries and I asked for help on just this one. Stop acting like you are the best and stay out of this if you aren't willing to help. I have been going through PHP for like 2 weeks and it is for a school project that is due in 1 week. Just looking for quick help. David- Thanks for acting civil and be willing to help. It is hard to read and understand programming and feel having someone help with something I am working on could help me learn easier. I am looking for just the total that are checked out, not by a single person. I want to make it so they can enter in a date range and get the number of devices check out during that data range. I have a table named device that is linked to term agreement which hast he due dates in it.
  3. I am trying to get data from mysql database which is already created. I am trying to get the person to input the information and then have have the PHP code go out and get the correct data back from the database and display it on the screen in a table. This is my connection string to my database. $con=mysqli_connect ("localhost", "root", "", "abc") ; $result = mysqli_query($con,"SELECT * FROM Customer"); This is what I have for my form so far. <form id="Form1" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> Customer First Name: <input name="Username" type="text"><br> Customer Last Name: <input name="LastName" type="text"><br> OR<br> Device Name: <input name="DevName" type="text"><br> <input type="submit" value="Submit"> What is the total number of devices that were checked out during a certain timeframe? This is the information that I am trying to pull from my database. I know this isn't much but I am a complete noob at PHP and need help! Thank you very much!
×
×
  • 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.