Getting User Input | PHP | Tutorial 10

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 พ.ย. 2024
  • Source Code - www.giraffeaca...
    This video is one in a series of videos where we'll be looking at programming in PHP. The course is designed for new programmers, and will introduce common programming topics using the PHP language.
    Throughout the course we'll be looking at various topics including variables, arrays, getting user input, loops, conditionals, object orientation and much more.
    If you’re enjoying Giraffe Academy and want to invest in our future, consider leaving a contribution giraffeacademy...

ความคิดเห็น • 49

  • @KTBWorld
    @KTBWorld ปีที่แล้ว +9

    PSA: If you're getting the "Warning: Undefined array key" error, it's because the $_GET variable isn't defined yet when the page first loads. As long as everything else is done correctly, you can ignore it, the form will run fine, and the warning will disappear after the first time you click "submit".
    As for why the warning doesn't show up for Mike, I'm assuming he somehow turned off error reporting; under normal circumstances, that warning should definitely appear for the code he's written.
    To those eager to get rid of the warning, you could wrap the PHP code in an "if" statement that checks whether or not $_GET has been set before attempting to print the variable, but Mike hasn't gotten to if statements yet at this point in the series, so maybe that solution would be uncomfortable for some.

  • @sidney-richards
    @sidney-richards 5 ปีที่แล้ว +9

    Clearest easiest and simplest way I have ever seen someone describe code..Thank You

  • @DanberryGlobal
    @DanberryGlobal 3 ปีที่แล้ว +6

    Started learning to code during covid, first tutorial I watched was you teachig python. Couple months later & I'm building websites. Love Brotha FR

  • @gabehcuodsuoitneterp203
    @gabehcuodsuoitneterp203 2 ปีที่แล้ว

    The GOAT! Keeping civilization going. 🙌

  • @abhay2192
    @abhay2192 3 ปีที่แล้ว +2

    Oh thanks sir ! I didn't even know that you have any other TH-cam channel also.😭

  • @gtechupdates
    @gtechupdates 2 ปีที่แล้ว

    i like understand your code more then other sir

  • @InnoTechWorld
    @InnoTechWorld 5 ปีที่แล้ว +9

    I got error undefined index i searched
    the problem was solved

  • @RTBOSS
    @RTBOSS 2 ปีที่แล้ว

    thank you so much

  • @futuristictech4337
    @futuristictech4337 2 ปีที่แล้ว

    Thank you so much. I clearly understood.

  • @clementk.2561
    @clementk.2561 6 ปีที่แล้ว +2

    Great video. Thanks.

  • @marshall3900
    @marshall3900 3 ปีที่แล้ว

    thank you Mike

  • @sabuein
    @sabuein 3 ปีที่แล้ว

    Thank you, Mike.

  • @nibornm1
    @nibornm1 3 ปีที่แล้ว

    Really helpful. Thank you.

  • @shaikmuheeb5526
    @shaikmuheeb5526 2 ปีที่แล้ว

    Good

  • @ultraexpress9823
    @ultraexpress9823 4 ปีที่แล้ว

    Great video. Thanks a lot

  • @prestonhaffey2805
    @prestonhaffey2805 6 ปีที่แล้ว +1

    You're great at explaining this stuff, Thank!

  • @walaress
    @walaress 2 ปีที่แล้ว

    Is an input like this from PHP saved server side? Will the "name" be displayed in the website server side?

  • @phpu2
    @phpu2 3 ปีที่แล้ว +2

    Please be advised that no one writes forms like this in 2021. I have not written a that posted to PHP in over 6+ years, personally.
    Please learn JavaScript AJAX forms and use PHP to catch and process the data.

  • @mukeshvoleti5555
    @mukeshvoleti5555 6 ปีที่แล้ว +1

    thq for the vedio.. its a great tutorial and easy to get into our brains.. but can we use php instead of javascript for websites.. can we..?

  • @matiassolomon7198
    @matiassolomon7198 3 ปีที่แล้ว +1

    thank you for this tutorial!

  • @erosgabbin3510
    @erosgabbin3510 5 ปีที่แล้ว

    Thanks!

  • @irg008
    @irg008 5 ปีที่แล้ว

    nice video

  • @omar7amdi
    @omar7amdi 3 ปีที่แล้ว +3

    Why do I get this warning: Undefined array key "name" in C:\.... line ...

    • @TheMATHEHOUSE
      @TheMATHEHOUSE 3 ปีที่แล้ว

      you need to make sure that the file name after form action="..." is set to your file's name, not site.php. It has to match the file name of what you're working on.

    • @KTBWorld
      @KTBWorld ปีที่แล้ว

      @@TheMATHEHOUSE That has nothing to do with it. If error reporting is turned on, then the warning will always appear with this code, even if the directory is set correctly.
      The actual reason the warning appears is because the $_GET variable isn't defined when the page first loads. As long as everything else is done correctly, you can ignore it, the form will run fine, and the warning will disappear after the first time you click "submit".

  • @domo-yi8hj
    @domo-yi8hj 3 ปีที่แล้ว

    Hi, I'm Wondering if someone can help me. I have a simple task for my college course: how could I make an if statement that checks to see if the name is some value(a particular name) before sending user to a separate php page? Thank you

  • @idirashahidaramli5680
    @idirashahidaramli5680 3 ปีที่แล้ว

    How to get the value from form with method post ?

  • @blayx
    @blayx 4 ปีที่แล้ว

    so i understand the $_GET functions, but lets say i want that input information to carry over to a separate file, so example a series of prompts each one in separate file, then on the last page, i wanna each out a summary of all the inputs, kinda like an order summary

    • @fatpanda3305
      @fatpanda3305 4 ปีที่แล้ว

      $_GET grabs the data from the HTML form, what determines what happens to that data actually precedes $_GET. In this case, the command was "echo", which basically told PHP to print the data on the page. To save it into a file you can use a command like file_put_contents.

    • @rahulk398
      @rahulk398 3 ปีที่แล้ว

      You could try $_SESSION super global variable

  • @Shubham_Sinn
    @Shubham_Sinn 5 ปีที่แล้ว

    why you haven't used semicolons in php section.

  • @kalpanamac3022
    @kalpanamac3022 4 ปีที่แล้ว

    Pls let me know how to input data and store in array

  • @rayhanulislam3943
    @rayhanulislam3943 6 ปีที่แล้ว

    Please help me to rectify this issue. I can't find out my mistake but it is showing "Undefined index:"



    Name:

    Notice: Undefined index: name in C:\xampp\htdocs\www\Story.php on line 13

  • @henryward8311
    @henryward8311 4 ปีที่แล้ว +1

    nope:
    echo $_GET["Password"] ?>
    just gives me that, not the password.

    • @ianpaul0520
      @ianpaul0520 4 ปีที่แล้ว

      see the name of your input if it Password or password, like that.

  • @romariejohynerio3453
    @romariejohynerio3453 3 ปีที่แล้ว

    theres no result i try it

  • @slickwillie3376
    @slickwillie3376 4 ปีที่แล้ว

    Line breaks. How tedious they are...

  • @alexhaussmann2078
    @alexhaussmann2078 5 ปีที่แล้ว +1

    Source Code www.mikedane.com/web-developme Does not take me to your source code.

  • @bettyrizzo6167
    @bettyrizzo6167 2 ปีที่แล้ว

    Error on age!

  • @krishshah3974
    @krishshah3974 2 ปีที่แล้ว

    poggers

  • @nakulankurmullam2982
    @nakulankurmullam2982 4 ปีที่แล้ว +1

    4:02

    • @henryward8311
      @henryward8311 4 ปีที่แล้ว

      Thank you so much!!!!!!!!!!!!!!

  • @sonukumar-vq5ni
    @sonukumar-vq5ni 5 ปีที่แล้ว +2

    what is action in form

    • @huggus1629
      @huggus1629 4 ปีที่แล้ว +1

      it submits the stuff put into e.g. text fields to the path in action
      .
      .
      .

  • @ComplexGamesYT
    @ComplexGamesYT 3 ปีที่แล้ว

    How are you running a PHP file as html?

    • @wyattmackubbin2262
      @wyattmackubbin2262 3 ปีที่แล้ว

      you can run HTML and PHP or javascript in the same file you just separate the code using tags.