1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
eduard
3 years ago
9

It is a function that ends the connection to the database.

Computers and Technology
2 answers:
Mkey [24]3 years ago
4 0

Answer:

mysql_close/ mysqli_close.

Explanation:

mysql_close / mysqli_close  functions are used to close the connection to the database.mysql_close is removed from the php version 7.0.0 and mysqli_close is used .

If the link in the mysql_close is not specified it so the last link opened by mysql_connect() is assumed.

It returns the value True or False.True on success false on failure.

yanalaym [24]3 years ago
4 0

Answer:

a. mysql_close / mysqli_close

Explanation:

mysql_close/mysqli_close closes existing MySql connection.

Example usage:

<?php

$link = mysql_connect('localhost', 'userid', 'password');

// Close the connection reference $link

mysql_close($link);

?>

Mysqli represents an improved version of mysql driver.

<?php

$link = mysqli_connect('localhost', 'userid', 'password');

if ($link) {

   // Close the connection reference $link

   mysqli_close($link);

}

?>

You might be interested in
Which of the following do you need to remeber about true/false questions?
lina2011 [118]
All parts of a statement must be true for it to be true
7 0
3 years ago
Identify the data link trailer blocker
IRINA_888 [86]
What are ur possible answers
7 0
3 years ago
function outputValue = AdjustOutput(outputValue, amplitudeResponse, phaseResponse) % Write an if-statement that subtracts 5 from
MatroZZZ [7]

Answer:

function outputValue = AdjustOutput(outputValue, amplitudeResponse, phaseResponse)

if amplitudeResponse > 10

outputValue = outputValue - 5;

else

outputValue = outputValue;

end

if phaseResponse < 275

outputValue = outputValue + 3;

else

outputValue = outputValue

end

end

AdjustOutput(20, 15, 149)

6 0
3 years ago
How do you fix The lag on your zsnes emulator
GenaCL600 [577]
Try resetting the phone if that doesn’t work do a hard reset
7 0
3 years ago
Financial stability is when u what
Mila [183]

Are in good standing money wise!

hope helped c;

3 0
2 years ago
Read 2 more answers
Other questions:
  • In the database below, the arrow is pointing to a _____.<br> file<br> record<br> field<br> key field
    12·1 answer
  • 2. Which of the following best describes the protocols used on the Internet?
    15·1 answer
  • When a signal travels across network medium, it signal loses strength the further it gets from the transmitting station, to the
    7·1 answer
  • What specific authentication method has no encryption for user credentials or data, and is not recommended for most applications
    14·1 answer
  • When backing up a database, what is added to the file name?<br> On g metrix
    9·1 answer
  • Match each proofreading mark to the expected result.
    10·1 answer
  • An article explaining the uses of the parts of a computer​
    14·1 answer
  • Kahnacademy sucksi am so mad i want to k ..<br> ill myself
    14·1 answer
  • You wrote a program to compare the portion of drivers who were on the phone. Which statements are true? Select 4 options.
    12·1 answer
  • Which engineer may design a GPS for a vehicle?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!