answersLogoWhite

0

$_POST is used see below for how.

Firstly, in your form add a hidden feild:

<input type="hidden" name="hasposted" value="true" />

Somewhere in your form.

Then above the form add the following:

<?php

if($_POST['hasposted'] '1'){ $mycheckbox = true; } else { $mycheckbox = false; }

echo '$mytext ' . $mytext . '<br />$mycheckbox '. $mycheckbox;

}

?>

<form method="POST" action="#">

<input type="hidden" name="hasposted" value="true" />

<label>Textbox: <input type="text" value="" name="mytext" /></label><br />

<label>Checkbox: <input type="checkbox" value="1" name="mycheckbox" /><br />

<br />

<input type="submit" value="Post" />

</form>

I've posted links to W3Cschools with information on these and all other Form Elements.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the result if you use input text in php?

Assuming you are using Method="POST" then following: $myinput = $_POST['thename']; If your Method="GET" then the following: $myinput = $_GET['thename']; The Name is set as follows: &lt;input type="text" name="thename" /&gt;


How do you separate word in array using php?

To separate a sentence into an array of words, you can use PHP's explode() function. If $text is your sentence, then use the following: $result = explode(" ", $text);


How do you read a PDF file line by line in PHP or is there a way to create a text file from PDF file using PHP?

You can use libraries like TCPDF or FPDF in PHP to extract text from a PDF file, but reading a PDF line by line directly is not straightforward as PDF files do not have a specific line structure like text files. To create a text file from a PDF, you can use libraries like MPDF or PDFlib in PHP to extract text content and write it to a text file.


How do you use PHP and MySQL to populate information in a form?

Working at hostmysite.com gives me a lot of experience with PHP and mysql. All you need to do is use a mysql query to grab information from a database. From there you can enter easily use the returned data to a form. Here is an example: &lt;?php $query = sprintf("SELECT firstname, lastname, address, age FROM friends LIMIT 1"); $result = mysql_query($query); if (!$result) { $message = 'Invalid query: ' . mysql_error() . "\n"; $message .= 'Whole query: ' . $query; die($message); } while ($row = mysql_fetch_assoc($result)) { $firstname = $row['firstname']; $lastname = $row['lastname']; $address = $row['address']; $age = $row['age']; } echo ' &lt;form method="post"&gt; &lt;input name="firstname" value="'.$firstname.'"&gt; &lt;input name="lastname" value="'.$lastname.'"&gt; &lt;input name="address" value="'.$address.'"&gt; &lt;input name="age" value="'.$age.'"&gt; &lt;/form&gt; '; mysql_free_result($result); ?&gt;


Do you need to know my php in order to use wordpress?

To create a template or plugin, you will need knowledge of PHP, CSS and HTML. To use WordPress as a blogging platform, you do not need to know PHP. WordPress is a WYSIWYG so you can style the text in the box and create your posts.


How do you insert value to a dropdownlist from textbox input php?

Store the textbox input in a database using a html form prefarably. Using a loop get all the textbox input from database and use print/echo to show them in a dropdown.


What is the use of a question mark in php?

It is used to tell the sever to use the PHP parser. To begin php you must use &lt;?php, and to end it, it is ?&gt;.


How do you use PHP in HTML?

You can't use PHP in an HTML document, but you can use HTML in PHP script.


what is the flow chart and algorithm to find the factorial of a given number?

A flowchart to find the factorial of a given number typically includes the following steps: Start, read the input number, check if the number is less than 0 (return an error for negative numbers), initialize a result variable to 1, and then use a loop to multiply the result by each integer from 1 to the input number. The algorithm can be summarized as follows: if ( n ) is the input number, initialize ( \text{factorial} = 1 ); for ( i ) from 1 to ( n ), update ( \text{factorial} = \text{factorial} \times i ); finally, output the factorial.


How do you use a function with a button in PHP?

A simple function call &lt;html&gt; &lt;body&gt; &lt;?php if(isset($_POST['button'])) { setValue(); // Function is called } function setValue() { echo "&lt;br&gt;The button property to call PHP function works"; // Your code here } ?&gt; &lt;input type="submit" name="button" onclick=&lt;?php $_SERVER['PHP_SELF']; ?&gt; /&gt; &lt;/body&gt; &lt;/head&gt;


What is keuboard?

keyboard is actually a most common input device use to give input to the computer in the form of text , graphic and many more....


What is the input statement in php?

In PHP, the input statement typically refers to how data is received from users, often through forms. The most common way to capture input is by using the $_POST or $_GET superglobals, which retrieve data submitted via HTTP POST or GET methods, respectively. For example, to access a value from a form input named &quot;username&quot;, you would use $_POST['username'] or $_GET['username']. Additionally, functions like fgets() or fscanf() can be used for reading input from the command line or files.