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
NeTakaya
2 years ago
10

HOW DO I CONNECT TO MY mysql server on my computer locally using php and also how to run it on the browser

Computers and Technology
1 answer:
zhuklara [117]2 years ago
7 0

Answer:

<?php

$mysqli = new mysqli("127.0.0.1:3307", "myUser", "myPass", "databasename");

$query = "SELECT * FROM users ORDER BY name";

if($result = $mysqli->query($query))

{

   echo '<ul>';

while ($obj = $result->fetch_object())

   {

       echo '<li>'.$obj->name.'</li>';

   }

   $result->free();

   echo '</ul>';

}

else

{

   die("nothing found");

}

$mysqli->Close();

?>

Explanation:

This should get you started.

You might be interested in
__________ delivers a comprehensive and accurate graphical overview of key performance indicators, often using a single screen.
Irina18 [472]
The answer is a digital dashboard.

In its simplest form, a digital dashboard or a business dashboard provides a graphical representation of KPIs, measures and metrics used by a company to monitor performance of departments, individuals, teams or the entire company. They track the progress of business objectives and make effective data driven decisions.



6 0
3 years ago
Which feature of the basic input/output system (bios)/unified extensible firmware interface (uefi) would you enable if you wante
Paraphin [41]

The answer should be secure boot

5 0
3 years ago
true or false then EXPLAIN why. Since many forms of money do not earn interest, people's demand for money is unaffected by chang
katrin [286]

Answer:

False

Explanation:

It is true that many forms of money do not earn interest. However, it is not true that this means that people's demand for money is unaffected by changes in interest rates. One of the ways interest rates can change the demand for money is because this can influence the way people divide their money. When a person has money, he can decide whether to keep this in teh form of money, or whether to keep wealth through another asset. When interest rates decrease, people are more likely to keep money in the form of money, as opposed to other assets. This is the source of the demand for money.

3 0
3 years ago
Read 2 more answers
Your boss wants you to make changes to 20 computers' internet explorer programs. To do this quickly what is the best solution?
UNO [17]

solution:

There's no doubting that Microsoft has put a lot of energy into its Internet Explorer replacement Edge, packing in all the latest features. But it's not for everyone. For that we have to upgrade our systems to get advanced operating system to ascecs the new internet explorer program (fast internet working)

Edge is the default web browser on Windows 10 and it's a little tricky to change it others such as Chrome and Firefox - or even Microsoft's old web browser, Internet Explorer.  

Internet Explorer was one of the most widely used web browsers, attaining a peak of about 95% usage share by 2003. This came after Microsoft used bundling to win the first browser war against Netscape, which was the dominant browser in the 1990s. Its usage share has since declined with the launch of Firefox (2004) and Google Chrome (2008), and with the growing popularity of operating systems such as Android and iOS that do not run Internet Explorer. Estimates for Internet Explorer's market share are about 3.04% across all platforms or by StatCounter's numbers ranked 6th, while on desktop, the only platform it's ever had significant share (i.e. excluding mobile and Xbox) it's ranked 3rd at 6.97%,[6] just after Firefox (others place IE 2nd with 10.86% just ahead of), as of August 2018 (browser market share is notoriously difficult to calculate). Microsoft spent over US$100 million per year on Internet Explorer in the late 1990s.


4 0
3 years ago
. Differentiate between Radio waves and Microwaves
ankoles [38]
Well you listen to a radio and you put food in a microwave
7 0
3 years ago
Other questions:
  • Application Software include programs like: MS Word, Google Docs, MS Exce ect...
    13·1 answer
  • Design and implement a program to display each directory entry information (files and directories) of current directory, and wit
    9·1 answer
  • Well this isn't school related, but how do i watch dubbed and subbed anime for free on my computer?
    7·2 answers
  • Gabe Kelp is a fourteen-year-old goalie for the Soaring Eagles soccer team. He and his teammates are each creating a screen name
    11·1 answer
  • A common preprocessing step in many natural language processing tasks is text normalization, wherein words are converted to lowe
    15·1 answer
  • I used the app and my answers were still wrong??????how
    8·2 answers
  • Write a program that reads a list of integers into a vector, and outputs the two smallest integers in the list, in ascending ord
    5·1 answer
  • Atheel tests a program and gets a NameError. How can this be fixed?
    13·2 answers
  • Checking for and correcting errors may need to be done numerous during which of the following phases of the software development
    7·1 answer
  • Discussion Topic
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!