answersLogoWhite

0

I'm just going to assume that "left" and "right" are names of an input fields, and that the form type is "POST"

in the php file that your form is posted to, you can get these values like this:

$left = $_POST["left"];

$right = $_POST["right"];

now $left and $right will have the values from your form, and you can use them as you like.

User Avatar

Wiki User

17y ago

What else can I help you with?

Continue Learning about Engineering

Free source code on online examination using PHP and MySQL?

yes


How do you connect to MySQL in Java?

To connect to MySQL in Java, you'll need to include the MySQL Connector/J JDBC driver in your project's classpath. You can establish a connection using the DriverManager.getConnection() method, providing the database URL, username, and password. Here's an example: Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/yourDatabase", "username", "password"); Make sure to handle exceptions and close the connection when done.


What is an example of a search statement correctly using the advanced searching technique nesting?

An example of a search statement using the advanced searching technique of nesting would be: (cats OR dogs) AND (training OR behavior). This search query will retrieve results that include either "cats" or "dogs," while also ensuring that the results pertain to either "training" or "behavior." Nesting helps to structure the search logically, enhancing the relevance of the results.


Is equinox using open source software?

equinox infractructure can be with llinux operating systems, mysql and other open source softwares, it is a matter of choice according to the banking requirements.


What is structure query language?

ADVANTAGES :)- 1.Its a high speed language. 2.There is not much of coding required like codind of programming languages. 3.Its emphasize on the concept of ORDBMS. Disadvantages:(- only 1 Its not v.user friendly!!

Related Questions

How do you retrieve an image from a database using PHP?

It depends what Database you are using. I personally use MySQL so will explain how you would do it using MySQL. You would have to create the MySQL database. I would store the image URL rather than the actual image. Then call it using PHP and a MySQL query. For Example: $sql = "SELECT * FROM Images WHERE Img_Name = 'img1'"; $query = mysql_query($sql); $array = mysql_fetch_array(query); then you would call it into HTML like so:


How do you retrieve the data from database?

To retrieve data rfrom a mysql database you first need to connect to the database using the mysql connection string(mysql_connect) after that, it's just a matter of executing a query of "SELECT `field1`, `field2` FROM `tablename`" Obviously replacing field 1 and 2 with the fields you want to replace and tablename with the table the data is stored


How do you create a database using PHP?

The following are the fundamental procedures for creating a MySQL database with PHP: As demonstrated in this article, connect to the MySQL server from your PHP script. If the connection is successful, construct a database using SQL and save it in a string variable. Carry out the query. To learn more about data science please visit- Learnbay.co


How many factories within one kilometre of all schools by using a query.?

mysql> SELECT COUNT(*) FROM factories WHERE school_distance < 1000; +---------------+----+ | COUNT(*) | 0 | +---------------+----+ mysql> SELECT COUNT(*) FROM `questions` WHERE `wording` LIKE '%terrible%'; +---------------+----------------------------+ | COUNT(*) | 9812438708923 | +---------------+----------------------------+ mysql>


How do you check if the MySQL is running?

To check if MySQL is running, you can use the command line. On Linux, you can execute systemctl status mysql or service mysql status to see the service status. On Windows, you can check the Task Manager for the MySQL service or use the command sc query MySQL. Additionally, you can try connecting to the MySQL server using the MySQL client with mysql -u username -p to see if it accepts connections.


How do you retrieve data from one MySQL table and create another MySQL table with the same data in it using PHP?

Execute a SELECT INTO statement on the mysql database: INSERT INTO destination_table (id, first_name, last_name) SELECT id, first_name, last_name from source_table;


What is an insert query in PHP and MySQL?

In a database table, the INSERT INTO statement is used to insert new rows. Let's create a SQL query with acceptable values using the INSERT INTO statement, and then run it by passing it to the PHP mysqli query() function to insert data into the table. To learn more about data science please visit- Learnbay.co


How do you print using the Rollmaster software?

First you have to retrieve the data from the database by using the 'records view', 'Query' or 'report' menus. Then select print.


When you request specific data from a database what is it called?

When you request specific data from a database, it is called a query. A query is a request for information from a database that matches certain criteria. This is commonly done using Structured Query Language (SQL) commands to retrieve the desired data.


What are the steps involved in creating a query in database?

Creating a query in a database typically involves several steps: first, identify the data you need and the specific tables that contain it. Next, use a query language, such as SQL, to construct the query by specifying the SELECT statement, the columns you want to retrieve, and any conditions using WHERE clauses. After crafting the query, execute it against the database to retrieve the desired results. Finally, analyze the output and refine the query if necessary for better accuracy or performance.


What is database searching?

Database searching is the process of querying a database to retrieve specific information. It involves formulating a search query using keywords or filters, and then executing the query to retrieve relevant data. This is commonly used in various fields, such as research, business, and information retrieval.


What is the purpose of a query in a database?

A database stored different types of information and records. When one wants to retrieve a particular type of information, using queries becomes necessary. One of the common query languages is SQL.