imteyaz haider


{ City } delhi
< Country > india
* Profession * pl
User No # 13418
Total Questions Posted # 0
Total Answers Posted # 5

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 76
Users Marked my Answers as Wrong # 19
Questions / { imteyaz haider }
Questions Answers Category Views Company eMail




Answers / { imteyaz haider }

Question { HCL, 29823 }

How can we register the variables into a Session?


Answer

by using session_register function

Is This Answer Correct ?    6 Yes 1 No

Question { HCL, 24397 }

What is register_globals in php?


Answer

When on, register_globals will inject your scripts with all
sorts of variables, like request variables from HTML forms.
This coupled with the fact that PHP doesn't require
variable initialization means writing insecure code is that
much easier. It was a difficult decision, but the PHP
community decided to disable this directive by default.
When on, people use variables yet really don't know for
sure where they come from and can only assume. Internal
variables that are defined in the script itself get mixed
up with request data sent by users and disabling
register_globals changes this.

Is This Answer Correct ?    20 Yes 6 No


Question { INDUS, 6597 }

Explain about error handling in php?


Answer

These are functions dealing with error handling and
logging. They allow you to define your own error handling
rules, as well as modify the way the errors can be logged.
This allows you to change and enhance error reporting to
suit your needs.

Is This Answer Correct ?    6 Yes 3 No

Question { Convex Digital, 10323 }

Write the code for upload a video file in PHP.How will You
Play this in Your Page.?


Answer

by using object and embed method


and

Is This Answer Correct ?    12 Yes 7 No

Question { HCL, 20690 }

what is output of echo 1< 2 and echo 1 >2


Answer

output of echo 1<2 will be 1
output of echo 1>2 will be nothing

Is This Answer Correct ?    32 Yes 2 No