Difference between revisions of "PHP-and-MySQL/C2/Common-Errors-Part-2/English"

From Script | Spoken-Tutorial
Jump to: navigation, search
(Created page with '{| border=1 !Time !Narration |- |0:00 |Hello again. Welcome to the second part of our error tutorial on how to spot errors and how to fix them. |- |0:07 |I have called this "ext…')
 
(No difference)

Revision as of 19:46, 1 December 2012

Time Narration
0:00 Hello again. Welcome to the second part of our error tutorial on how to spot errors and how to fix them.
0:07 I have called this "extrachar dot php" and the reason is that when we run this, ...lets go back, ...click on "extrachar", we get this error "Parse error in" and all of this and on line 6.
0:23 We are given no information what-so-ever as to what we are expecting or what we are not expecting or anything of that sort.
0:32 We jump to line 6 which is here and at first glance this might look okay.
0:37 But we have actually got an extra bracket on here so we are deleting that and you can see this now works.
0:44 And now that's pretty easy to spot.
0:47 However when you are doing things like mathematical calculations for example like adding, comparing, etc.. if you are doing mathematical calculations like this and you lose track of your brackets.
1:09 Sometimes it is very easy to solve. When we run this, nothing is going to come up because these two don’t equal each other.
1:19 That didn't return any errors.
1:20 But if I add an extra bracket here, we'll get a "Parse error".
1:28 When you solve complicated if statements or complex mathematical operations, you should check that the brackets match.
1:36 Just make sure that you are checking for all the brackets or anything else like some characters that seem to be in there.
1:48 For example - lets put an "a" in front of that.
1:52 See - when we go back we still get a "Parse error".
1:55 Lets get rid of this. Refresh that, still getting a "Parse error".
1:59 So you know you might have typed something. Lets remove that.
2:04 Okay now the next one I will show is the "missing page".
2:07 Let me show you the error for this. Click on "missing.php". Ok we get more Parse errors as seen on line 9.
2:16 Lets go down and where is line 9? Semicolon.
2:23 Okay sorry that was actually not intended. So lets refresh again.
2:29 Okay. So we have got a "Parse error" on line 18.
2:33 Lets go to line 18.
2:37 Okay now - line 18 - this line here where I am pointing is line 18.
2:47 So what is wrong with line 18?
2:49 There is absolutely no content on line 18. How could we possibly have an error?
2:54 And the reason for that is what I said earlier - to check around this area.
3:00 So we have to check a couple of lines up - say 4 or 5 lines up.
3:06 What we have is an "if" statement - "if posted user name equals 'Alex'", echo "You own PHP Academy", else echo "Hello name".
3:17 We might say that we have got a starting curly bracket and an ending curly bracket for this "if" statement here.
3:27 Why isn’t it working? That's because we have already started an "if" statement up here.
3:30 And this is the purpose of indentation and the usefulness of indentation.
3:35 To me when I look at this from experience, I know that since this bracket is indented here, that bracket should be indented there, in the same line.
3:45 Therefore it is missing. So if this was there and that was indented there, then I would know that's from the previous "if" statement up here where the block starts here and the block ends here.
3:55 But here, the block starts here and there is no end bracket here.
4:01 I'll put it here. And when we run this, there you go! It starts working now.
4:06 So if you miss out characters, you will find that you get weird places for the errors.
4:12 In fact, this is not a weird place for the error because we are saying "else", start of block and end of block.
4:20 And what we are looking for is an end to this block now because this is the block that hasn’t been ended.
4:28 So we are saying the line error is not actually here because we require an end to a block here.
4:35 Now that will work, okay?
4:38 So just look around couple of lines up and see where you might have an else without an end or some other character missing or something else that you require that's missing.
4:48 Next lets switch to the "getpost dot php".
4:50 I have used the error-reporting "E All" just to demonstrate this.
4:55 This is to "demonstrate". This type of error is going to be reported.
5:04 This doesn't mean all errors. Its not an exhaustive list of all the errors that can be reported.
5:09 This is just a parameter for this function.
5:11 This will allow us to see some errors that the user wouldn’t usually say. I mean you wouldn’t use this if you were to launch your own website. But I have a tutorial on this which you should see.
5:25 So, this is a "get post" error.
5:29 Lets go here. Ok, so we have got a variable called "data".
5:32 This is the GET variable called "name".
5:40 Our code says "if this data variable exists, echo data" and this seems like a pretty normal program.
5:48 There is no actual error here.
5:50 We are taking some variable here and everything is working and there is no line break error or line terminating error, either.
6:07 We have not missed anything, we don’t need to put anything in.
6:10 But when I run this page, we get a notice.
6:18 Now this is not a "Parse error" which you have seen before. This is a notice.
6:22 And the page can’t function properly with this error present.
6:29 Let me show you - here I say "name equals alex" and this error disappears.
6:37 This shows that there is nothing really wrong with our code but what was wrong in first place, was that this data variable had not been fulfilled.
6:47 It's the same as saying "data equals absolutely nothing".
6:54 Here let me say "echo variable alex" and this is line 5.
7:03 Lets refresh. Undefined variable alex, Undefined index name.
7:11 So what we are doing is - okay, let me start from the beginning.
7:19 This is unfulfilled if the name has not been specified in the header.
7:24 Therefore "data equals nothing" and so we get the error "Undefined index", just like we get "Undefined variable" if we echo a variable that hasn't been set.
7:34 So as soon as we put some data in here, this error goes.
7:37 Lets refresh this.
7:41 If you want to get rid of this initial error all you need to do is put a "@ (at)" symbol in between or at the start of this line.
7:49 When we refresh, we get nothing because no header has been set.
7:55 No get variable has been set. And as soon as we say "name equals alex" our name is echoed out just like the code here specifies.
8:05 So even though you are using this "if data exists", technically this still doesn’t exist, if nothing has been put here. So look out for them.
8:13 That's all for now. In the last part, I will go through the next two common errors quickly. See you there.
8:20 This is Evan Varkey dubbing for the Spoken Tutorial project.

Thanks for watching .

Contributors and Content Editors

Chandrika, Pratik kamble, Pravin1389