• About
  • Privacy & Policy
  • Contact
TETRALEARN
  • Home
  • News
    • All
    • IT Events
    • Science
    • Technology
    Maximizing Performance Testing Efficiency with JMeter

    Maximizing Performance Testing Efficiency with JMeter

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Understanding PostgreSQL

    Understanding PostgreSQL

    Best Tools for Software Testing

    Best Tools for Software Testing

    Blockchain Technology

    Blockchain Technology

    Selenium Automation Testing

    Selenium Automation Testing

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Projects
    • All
    • Apps
    • Mobile Apps
    • Web Applications
    Maximizing Performance Testing Efficiency with JMeter

    Maximizing Performance Testing Efficiency with JMeter

    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Understanding SRS

    Understanding SRS

    Understanding FRS

    Understanding FRS

    Best Tools for Software Testing

    Best Tools for Software Testing

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
  • Programming
    • All
    • Laravel
    • PHP
    • Python
    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Highlights and Challenges of JavaScript

    Highlights and Challenges of JavaScript

    Angular Framework Features

    Angular Framework Features

    LARAVEL FEATURES

    LARAVEL FEATURES

    OOPS in PHP

    OOPS in PHP

    JavaScript Object Notation(JSON)

    JavaScript Object Notation(JSON)

  • Tutorials
    • All
    • Database Tutorial
    • Digital Marketing
    • Programming
    Application Programming Interface

    Application Programming Interface

    Twitter Tools and Tutorials For Designers and Developers

    Twitter Tools and Tutorials For Designers and Developers

    WORDPRESS FUNDAMENTAL

    WORDPRESS FUNDAMENTAL

    Understand JOINS in RDBMS

    Understand JOINS in RDBMS

    Best SEO Tips

    Best SEO Tips

    Trending Tags

    • Golden Globes
    • Game of Thrones
    • MotoGP 2017
    • eSports
    • Fashion Week
  • Vacancies
No Result
View All Result
  • Home
  • News
    • All
    • IT Events
    • Science
    • Technology
    Maximizing Performance Testing Efficiency with JMeter

    Maximizing Performance Testing Efficiency with JMeter

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Understanding PostgreSQL

    Understanding PostgreSQL

    Best Tools for Software Testing

    Best Tools for Software Testing

    Blockchain Technology

    Blockchain Technology

    Selenium Automation Testing

    Selenium Automation Testing

    Trending Tags

    • Trump Inauguration
    • United Stated
    • White House
    • Market Stories
    • Election Results
  • Projects
    • All
    • Apps
    • Mobile Apps
    • Web Applications
    Maximizing Performance Testing Efficiency with JMeter

    Maximizing Performance Testing Efficiency with JMeter

    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Yii Framework: Turbocharge Your Web Development Projects Like Never Before

    Understanding SRS

    Understanding SRS

    Understanding FRS

    Understanding FRS

    Best Tools for Software Testing

    Best Tools for Software Testing

    Trending Tags

    • Nintendo Switch
    • CES 2017
    • Playstation 4 Pro
    • Mark Zuckerberg
  • Programming
    • All
    • Laravel
    • PHP
    • Python
    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

    Highlights and Challenges of JavaScript

    Highlights and Challenges of JavaScript

    Angular Framework Features

    Angular Framework Features

    LARAVEL FEATURES

    LARAVEL FEATURES

    OOPS in PHP

    OOPS in PHP

    JavaScript Object Notation(JSON)

    JavaScript Object Notation(JSON)

  • Tutorials
    • All
    • Database Tutorial
    • Digital Marketing
    • Programming
    Application Programming Interface

    Application Programming Interface

    Twitter Tools and Tutorials For Designers and Developers

    Twitter Tools and Tutorials For Designers and Developers

    WORDPRESS FUNDAMENTAL

    WORDPRESS FUNDAMENTAL

    Understand JOINS in RDBMS

    Understand JOINS in RDBMS

    Best SEO Tips

    Best SEO Tips

    Trending Tags

    • Golden Globes
    • Game of Thrones
    • MotoGP 2017
    • eSports
    • Fashion Week
  • Vacancies
No Result
View All Result
TETRALEARN
No Result
View All Result
Home Programming PHP

PHP-MYSQL Interview Questions and Answers

admin by admin
May 26, 2022
in PHP, Programming
47
PHP-MYSQL Interview Questions and Answers
0
SHARES
177
VIEWS
Share on FacebookShare on Twitter

1. How many ways can we get the value of current session id?

Session_id() returns the session id for the current session.

2. What is the difference between mysql_fetch_object and mysql_fetch_array?

MySQL fetch object will collect first single matching record where mysql_fetch_array will collect all matching records from the table in an array.

3. What is meant by urlencode and urldecode?

Answer 1:
urlencode() returns the URL encoded version of the given string. URL coding converts special characters into % signs followed by two hex digits. For example: urlencode(“10.00%”) will return “10%2E00%25”. URL encoded strings are safe to be used as part of URLs.
urldecode() returns the URL decoded version of the given string.

Answer 2:
string urlencode(str) – Returns the URL encoded version of the input string. String values to be used in URL query string need to be URL encoded. In the URL encoded version:

Alphanumeric characters are maintained as is.
Space characters are converted to “+” characters.
Other non-alphanumeric characters are converted “%” followed by two hex digits representing the converted character.

string urldecode(str) – Returns the original string of the input URL encoded string.

For example:

$discount =”10.00%”;
$url = “http://domain.com/submit.php?disc=”.urlencode($discount);
echo $url;

You will get “http://domain.com/submit.php?disc=10%2E00%25”.

4. What is the difference between $message and $$message?

Answer 1:
$message is a simple variable whereas $$message is a reference variable. Example:
$user = ‘bob’

is equivalent to

$holder = ‘user’;
$$holder = ‘bob’;

Answer 2:
They are both variables. But $message is a variable with a fixed name. $$message is a variable who’s name is stored in $message. For example, if $message contains “var”, $$message is the same as $var.

5. What does a special set of tags do in PHP?

What does a special set of tags do in PHP?
The output is displayed directly to the browser.

6. What Is a Persistent Cookie?

A persistent cookie is a cookie which is stored in a cookie file permanently on the browser’s computer. By default, cookies are created as temporary cookies which stored only in the browser’s memory. When the browser is closed, temporary cookies will be erased. You should decide when to use temporary cookies and when to use persistent cookies based on their differences:

  • Temporary cookies can not be used for tracking long-term information.
  • Persistent cookies can be used for tracking long-term information.
  • Temporary cookies are safer because no programs other than the browser can access them.
  • Persistent cookies are less secure because users can open cookie files see the cookie values

7. How can we encrypt the username and password using PHP?

Answer1
You can encrypt a password with the following Mysql>SET PASSWORD=PASSWORD(“Password”);

Answer2
You can use the MySQL PASSWORD() function to encrypt username and password. For example,
INSERT into user (password, …) VALUES (PASSWORD($password”)), …);

8. How do I find out the number of parameters passed into function. ?

Func_num_args() function returns the number of parameters passed in

9. How do you define a constant?

Via define() directive, like define (“MYCONSTANT”, 100);

10. What are the differences between require and include, include_once?

Answer 1:
require_once() and include_once() are both the functions to include and evaluate the specified file only once. If the specified file is included previous to the present call occurrence, it will not be done again.

But require() and include() will do it as many times they are asked to do.

Answer 2:
The include_once() statement includes and evaluates the specified file during the execution of the script. This is a behavior similar to the include() statement, with the only difference being that if the code from a file has already been included, it will not be included again. The major difference between include() and require() is that in failure include() produces a warning message whereas require() produces a fatal errors.

Answer 3:
All three are used to an include file into the current page.
If the file is not present, require(), calls a fatal error, while in include() does not.
The include_once() statement includes and evaluates the specified file during the execution of the script. This is a behavior similar to the include() statement, with the only difference being that if the code from a file has already been included, it will not be included again. It des not call a fatal error if file not exists. require_once() does the same as include_once(), but it calls a fatal error if file not exists.

Answer 4:
File will not be included more than once. If we want to include a file once only and further calling of the file will be ignored then we have to use the PHP function include_once(). This will prevent problems with function redefinitions, variable value reassignments, etc.

11. How To Get the Uploaded File Information in the Receiving Script?

Once the Web server received the uploaded file, it will call the PHP script specified in the form action attribute to process them. This receiving PHP script can get the uploaded file information through the predefined array called $_FILES. Uploaded file information is organized in $_FILES as a two-dimensional array as:
$_FILES[$fieldName][‘name’] – The Original file name on the browser system.
$_FILES[$fieldName][‘type’] – The file type determined by the browser.
$_FILES[$fieldName][‘size’] – The Number of bytes of the file content.
$_FILES[$fieldName][‘tmp_name’] – The temporary filename of the file in which the uploaded file was stored on the server.
$_FILES[$fieldName][‘error’] – The error code associated with this file upload.

The $fieldName is the name used in the <INPUT,>.

12. How can I execute a PHP script using command line?

Just run the PHP CLI (Command Line Interface) program and provide the PHP script file name as the command line argument. For example, “php myScript.php”, assuming “php” is the command to invoke the CLI program.
Be aware that if your PHP script was written for the Web CGI interface, it may not execute properly in command line environment.

13. I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what’s the problem?

PHP Interpreter treats numbers beginning with 0 as octal. Look at the similar PHP interview questions for more numeric problems.

14. Would I use print “$a dollars” or “{$a} dollars” to print out the amount of dollars in this example?

In this example it wouldn’t matter, since the variable is all by itself, but if you were to print something like “{$a},000,000 mln dollars”, then you definitely need to use the braces.

15. What are the different tables present in MySQL? Which type of table is generated when we are creating a table in the following syntax: create table employee(eno int(2),ename varchar(10))?

Total 5 types of tables we can create

  1. MyISAM
  2. Heap
  3. Merge
  4. INNO DB
  5. ISAM MyISAM is the default storage engine as of MySQL 3.23. When you fire the above create query MySQL will create a MyISAM table.

16. How To Create a Table?

If you want to create a table, you can run the CREATE TABLE statement as shown in the following sample script:

<?php
include “mysql_connection.php”;

$sql = “CREATE TABLE Tech_links (”
. ” id INTEGER NOT NULL”
. “, url VARCHAR(80) NOT NULL”
. “, notes VARCHAR(1024)”
. “, counts INTEGER”
. “, time TIMESTAMP DEFAULT sysdate()”
. “)”;
if (mysql_query($sql, $con)) {
print(“Table Tech_links created.\n”);
} else {
print(“Table creation failed.\n”);
}

mysql_close($con);
?>

Remember that mysql_query() returns TRUE/FALSE on CREATE statements. If you run this script, you will get something like this:
Table Tech_links created.

17. How can we encrypt the username and password using PHP?

Answer1
You can encrypt a password with the following Mysql>SET PASSWORD=PASSWORD(“Password”);

Answer2
You can use the MySQL PASSWORD() function to encrypt username and password. For example,
INSERT into user (password, …) VALUES (PASSWORD($password”)), …);

18. How do you pass a variable by value?

Just like in C++, put an ampersand in front of it, like $a = &$b

19. What is the functionality of the functions STRSTR() and STRISTR()?

string strstr ( string haystack, string needle ) returns part of haystack string from the first occurrence of needle to the end of haystack. This function is case-sensitive.

stristr() is idential to strstr() except that it is case insensitive.

20. When are you supposed to use endif to end the conditional statement?

When the original if was followed by : and then the code block without braces.

21. How can we send mail using JavaScript?

No. There is no way to send emails directly using JavaScript.

But you can use JavaScript to execute a client side email program send the email using the “mailto” code. Here is an example:

function myfunction(form)
{
tdata=document.myform.tbox1.value;
location=”mailto:mailid@domain.com?subject=…”;
return true;
}

22. What is the difference between ereg_replace() and eregi_replace()?

eregi_replace() function is identical to ereg_replace() except that it ignores case distinction when matching alphabetic characters.

23. What is the purpose of the following files having extensions: frm, myd, and myi? What these files contain?

In MySQL, the default table type is MyISAM.
Each MyISAM table is stored on disk in three files. The files have names that begin with the table name and have an extension to indicate the file type.

The ‘.frm’ file stores the table definition.
The data file has a ‘.MYD’ (MYData) extension.
The index file has a ‘.MYI’ (MYIndex) extension,

24. If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of $$b?

100, it’s a reference to existing variable.

25. How To Protect Special Characters in Query String?

If you want to include special characters like spaces in the query string, you need to protect them by applying the urlencode() translation function. The script below shows how to use urlencode():

<?php
print(“<html>”);
print(“<p>Please click the links below”
.” to submit comments about TECHPreparation.com:</p>”);
$comment = ‘I want to say: “It\’s a good site! :->”‘;
$comment = urlencode($comment);
print(“<p>”
.”<a href=\”processing_forms.php?name=Guest&comment=$comment\”>”
.”It’s an excellent site!</a></p>”);
$comment = ‘This visitor said: “It\’s an average site! :-(“‘;
$comment = urlencode($comment);
print(“<p>”
.'<a href=”processing_forms.php?’.$comment.’”>’
.”It’s an average site.</a></p>”);
print(“</html>”);
?>

26. Are objects passed by value or by reference?

Everything is passed by value.

27. What are the differences between DROP a table and TRUNCATE a table?

DROP TABLE table_name – This will delete the table and its data.

TRUNCATE TABLE table_name – This will delete the data of the table, but not the table definition.

28. How do you call a constructor for a parent class?

parent::constructor($value)

29. WHAT ARE THE DIFFERENT TYPES OF ERRORS IN PHP?

Here are three basic types of runtime errors in PHP:

1. Notices: These are trivial, non-critical errors that PHP encounters while executing a script – for example, accessing a variable that has not yet been defined. By default, such errors are not displayed to the user at all – although you can change this default behavior.

2. Warnings: These are more serious errors – for example, attempting to include() a file which does not exist. By default, these errors are displayed to the user, but they do not result in script termination.

3. Fatal errors: These are critical errors – for example, instantiating an object of a non-existent class, or calling a non-existent function. These errors cause the immediate termination of the script, and PHP’s default behavior is to display them to the user when they take place.

Internally, these variations are represented by twelve different error types

30. What’s the special meaning of __sleep and __wakeup?

__sleep returns the array of all the variables than need to be saved, while __wakeup retrieves them.

31. How can we submit a form without a submit button?

If you don’t want to use the Submit button to submit a form, you can use normal hyper links to submit a form. But you need to use some JavaScript code in the URL of the link. For example:

<a href=”javascript: document.myform.submit();”>Submit Me</a>

Tags: most common question asked in php interviewPHPphp interview questionsphp question asked in interviewphp-mysql questionphp-mysql question asked in interviewquestion for php interviewswhat are most asked question in interviewwhat are the most asked php question in interview
Next Post

Best SEO Tips

admin

admin

Next Post
Best SEO Tips

Best SEO Tips

Comments 47

  1. Pingback: Best SEO Tips - TETRALEARN
  2. VINAY Yadav says:
    3 years ago

    The content you wrote is very nice and helpful for me and everyone.

    Reply
  3. Swagatika says:
    3 years ago

    Knowledgeable and helpful content
    Thank you

    Reply
  4. Atul singh says:
    3 years ago

    Very good blog, gain proper knowledge thank you.

    Reply
  5. Sara Faiza says:
    3 years ago

    I gained a lot of knowledge all thanks to this platform

    Reply
  6. Aryan ray says:
    3 years ago

    Very nice and informative.

    Reply
  7. Sonali says:
    3 years ago

    Very informative . Helped me alot.

    Reply
  8. Anupriya says:
    3 years ago

    Very informative . Helped me alot.

    Reply
  9. Kaushik Jena says:
    3 years ago

    Very nice and informative.

    Reply
  10. Soumya says:
    3 years ago

    Very nice content

    Reply
  11. Bhagyashree Pradhan says:
    3 years ago

    Very nice and informative.

    Reply
  12. sasmitanjali nayak says:
    3 years ago

    nice volg keep sharing good ones 👍

    Reply
  13. Subham jyoti pradhan says:
    3 years ago

    The content you wrote is very informative thank you so much .

    Reply
  14. Sara faiza says:
    3 years ago

    Love this blog. Thank for the knowledge. Very informative

    Reply
  15. Naren ray says:
    3 years ago

    Thank you for such knowledgeable blog. It helped a lot .Love this blog. Thank for the knowledge.

    Reply
  16. Rohit Nandurkar says:
    3 years ago

    Very nice

    Reply
    • Nilay says:
      3 years ago

      Thank you for such a informative blog.

      Reply
  17. Ayesha Siddiqua says:
    3 years ago

    Very informative blog. Helped me a lot.         

    Reply
  18. Imran khan says:
    3 years ago

    Thank for the knowledge

    Reply
  19. Vicky Kumar says:
    3 years ago

    Informative blog.

    Reply
  20. Nilay says:
    3 years ago

    Thank you for such a informative blog.

    Reply
  21. Prince Gopal says:
    3 years ago

    gained proper knowledge, thanks ❤️

    Reply
  22. Balram Patel says:
    3 years ago

    Very informative Blog ….
    Thank you very much..😊

    Reply
  23. Karthiyayini says:
    3 years ago

    Very helpful for new learner like me. Thank you

    Reply
  24. Huzaif Banday says:
    3 years ago

    Very very very nice n cool informative

    Reply
  25. Deepanshi Singh says:
    3 years ago

    Very well explained questions alongwith answers, thank you

    Reply
  26. Astha Das says:
    3 years ago

    I got a chance to enhance my skills. Thank you so much.

    Reply
  27. Balram thakur says:
    3 years ago

    Useful for me , thank you. there are many information regarding software.

    Reply
  28. Shivani Sendhav says:
    3 years ago

    Useful for me , thank you. there are many information regarding software.

    Reply
  29. Meena Thakur says:
    3 years ago

    The content you wrote is very informative thank you so much

    Reply
  30. Baldev patel says:
    3 years ago

    Very nice and informative.

    Reply
  31. Gajraj Sendhav says:
    3 years ago

    Nice information
    Thank you

    Reply
  32. Devendra Sendhav says:
    3 years ago

    The content you wrote is very informative thank you so much.

    Reply
  33. Bablu Sendhav says:
    3 years ago

    The content you wrote is very informative thank you so much.

    Reply
  34. Rajni Thakur says:
    3 years ago

    Very nice and informative.

    Reply
  35. Garima Singh says:
    2 years ago

    The content you wrote is very informative thank you so much.

    Reply
  36. Ritika says:
    2 years ago

    The content you wrote is very informative thank you so much.

    Reply
  37. Lucky meher says:
    2 years ago

    Very good vlog

    Reply
  38. Rajashree Pradhan says:
    2 years ago

    It is very usefull

    Reply
  39. Priya stock says:
    2 years ago

    Useful for me , thank you. there are many information regarding software.

    Reply
  40. Ranjulata Pradhan says:
    2 years ago

    Very good, there are many information regarding software.

    Reply
  41. Rajesh kara says:
    2 years ago

    Very good blog.

    Reply
  42. Ashwika Singh says:
    2 years ago

    Love this blog. Thank for the knowledge

    Reply
  43. Baldev patel says:
    2 years ago

    knowledgeable blog. It helped a lot

    Reply
  44. Komal rathore says:
    2 years ago

    Very good blog, gain proper knowledge thank you.

    Reply
  45. Patel Balram says:
    2 years ago

    Good Knowledge for me
    Best blog

    Reply
  46. Meena Nagar says:
    2 years ago

    Nice blog. gained proper knowledge

    Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

  • Trending
  • Comments
  • Latest
Waterfall Model(SDLC)

Waterfall Model(SDLC)

June 2, 2022
Application Programming Interface

Application Programming Interface

June 7, 2022
PHP-MYSQL Interview Questions and Answers

PHP-MYSQL Interview Questions and Answers

May 26, 2022
Artificial Intelligence

Artificial Intelligence

June 11, 2022
Waterfall Model(SDLC)

Waterfall Model(SDLC)

95
Artificial Intelligence

Artificial Intelligence

55
Application Programming Interface

Application Programming Interface

50
PHP-MYSQL Interview Questions and Answers

PHP-MYSQL Interview Questions and Answers

47
Maximizing Performance Testing Efficiency with JMeter

Maximizing Performance Testing Efficiency with JMeter

June 2, 2023
Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

May 31, 2023
Yii Framework: Turbocharge Your Web Development Projects Like Never Before

Yii Framework: Turbocharge Your Web Development Projects Like Never Before

May 27, 2023
Understanding PostgreSQL

Understanding PostgreSQL

May 24, 2023

Recent News

Maximizing Performance Testing Efficiency with JMeter

Maximizing Performance Testing Efficiency with JMeter

June 2, 2023
Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

May 31, 2023
Yii Framework: Turbocharge Your Web Development Projects Like Never Before

Yii Framework: Turbocharge Your Web Development Projects Like Never Before

May 27, 2023
Understanding PostgreSQL

Understanding PostgreSQL

May 24, 2023
TETRALEARN

Tetralearn Blog section is dedicated to Programmers, Designers and Technocrats for latest news, skills & inventions.

Browse by Category

  • Apps
  • Database Tutorial
  • Digital Marketing
  • IT Events
  • Laravel
  • Mobile Apps
  • PHP
  • Programming
  • Programming
  • Projects
  • Python
  • Science
  • Technology
  • Uncategorized
  • Web Applications

Recent News

Maximizing Performance Testing Efficiency with JMeter

Maximizing Performance Testing Efficiency with JMeter

June 2, 2023
Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

Building Robust Web Applications with CakePHP: An In-Depth Look into its Features

May 31, 2023
  • About
  • Privacy & Policy
  • Contact

© 2022, Copyrights Reserved. Powered By Tetralance

No Result
View All Result

© 2022, Copyrights Reserved. Powered By Tetralance