Getting User Input | PHP | Tutorial 10

Поділитися
Вставка
  • Опубліковано 20 вер 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...

КОМЕНТАРІ • 48

  • @sidney-richards
    @sidney-richards 5 років тому +9

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

  • @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.

  • @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 Рік тому

    The GOAT! Keeping civilization going. 🙌

  • @abhay2192
    @abhay2192 3 роки тому +2

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

  • @InnoTechWorld
    @InnoTechWorld 5 років тому +9

    I got error undefined index i searched
    the problem was solved

  • @gtechupdates
    @gtechupdates 2 роки тому

    i like understand your code more then other sir

  • @clementk.2561
    @clementk.2561 6 років тому +2

    Great video. Thanks.

  • @futuristictech4337
    @futuristictech4337 2 роки тому

    Thank you so much. I clearly understood.

  • @nibornm1
    @nibornm1 3 роки тому

    Really helpful. Thank you.

  • @sabuein
    @sabuein 3 роки тому

    Thank you, Mike.

  • @prestonhaffey2805
    @prestonhaffey2805 6 років тому +1

    You're great at explaining this stuff, Thank!

  • @ultraexpress9823
    @ultraexpress9823 4 роки тому

    Great video. Thanks a lot

  • @omar7amdi
    @omar7amdi 3 роки тому +3

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

    • @TheMATHEHOUSE
      @TheMATHEHOUSE 2 роки тому

      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".

  • @matiassolomon7198
    @matiassolomon7198 3 роки тому +1

    thank you for this tutorial!

  • @marshall3900
    @marshall3900 3 роки тому

    thank you Mike

  • @RTBOSS
    @RTBOSS 2 роки тому

    thank you so much

  • @alejandroarango4551
    @alejandroarango4551 2 роки тому

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

  • @idirashahidaramli5680
    @idirashahidaramli5680 3 роки тому

    How to get the value from form with method post ?

  • @kalpanamac3022
    @kalpanamac3022 3 роки тому

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

  • @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..?

  • @irg008
    @irg008 5 років тому

    nice video

  • @erosgabbin3510
    @erosgabbin3510 4 роки тому

    Thanks!

  • @shaikmuheeb5526
    @shaikmuheeb5526 2 роки тому

    Good

  • @ShubhamSingh-mo5nc
    @ShubhamSingh-mo5nc 5 років тому

    why you haven't used semicolons in php section.

  • @domo-yi8hj
    @domo-yi8hj 2 роки тому

    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

  • @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.

  • @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 3 роки тому

      $_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

  • @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.

  • @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

  • @romariejohynerio3453
    @romariejohynerio3453 3 роки тому

    theres no result i try it

  • @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
      .
      .
      .

  • @bettyrizzo6167
    @bettyrizzo6167 2 роки тому

    Error on age!

  • @slickwillie3376
    @slickwillie3376 4 роки тому

    Line breaks. How tedious they are...

  • @Complex_youtube
    @Complex_youtube 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.

  • @krishshah3974
    @krishshah3974 2 роки тому

    poggers

  • @nakulankurmullam2982
    @nakulankurmullam2982 4 роки тому +1

    4:02