Search
 
SCRIPT & CODE EXAMPLE
 

PHP

check box with value in php

<form method="post" action="">
    <span>Select languages</span><br/>
    <input type="checkbox" name='lang[]' value="PHP"> PHP <br/>
    <input type="checkbox" name='lang[]' value="JavaScript"> JavaScript <br/>
    <input type="checkbox" name='lang[]' value="jQuery"> jQuery <br/>
    <input type="checkbox" name='lang[]' value="Angular JS"> Angular JS <br/>

    <input type="submit" value="Submit" name="submit">
</form>

<?php
if(isset($_POST['submit'])){

    if(!empty($_POST['lang'])) {

        foreach($_POST['lang'] as $value){
            echo "value : ".$value.'<br/>';
        }

    }

}
?>
Comment

check box with value in php

<span>Select languages</span><br/>
<input type="checkbox" name='lang[]' value="PHP"> PHP <br/>
<input type="checkbox" name='lang[]' value="JavaScript"> JavaScript <br/>
<input type="checkbox" name='lang[]' value="jQuery"> jQuery <br/>
<input type="checkbox" name='lang[]' value="Angular JS"> Angular JS <br/>
Comment

PREVIOUS NEXT
Code Example
Php :: how to redirect back to admin page if user is not authenticated in laravel based on the guard 
Php :: php array_search 
Php :: pagination in api laravel 
Php :: eloquent relationships 
Php :: router php 
Php :: xampp php ini 
Php :: laravel crob job in cpanel 
Php :: laravel 9 requirements 
Php :: cache for php website 
Php :: Merging Two Laravel Collections keeping the original keys 
Php :: laravel return redirect back with input except one filed 
Php :: Change the colorbar scale to log scale 
Php :: php artisan vendor:publish --provider="SpatieActivitylogActivitylogServiceProvider" --tag="activitylog-migrations" 
Php :: how to convert amount in words in php 
Php :: creating custom database 
Php :: Code début Selenium PHP 
Php :: slim disable display error details 
Php :: how to remove index.php in codeigniter 3 route 
Php :: https://stackoverflow.com/questions/34545641/php-artisan-makeauth-command-is-not-defined 
Php :: php replace all text from string with associate array values 
Php :: WP Hero Img 
Php :: laravel restore deleted 
Php :: .htaccess Preventing access to your PHP includes files 
Php :: implode remove empty php 
Php :: how can we send attached file with notification in gmail in laravel 8 
Php :: laravel relationship example 
Php :: how to get name through id from mysql using php 
Php :: laravel How can I escase string in whereRaw 
Php :: WooCommerce quantity field to ajax add to cart button archive page 
Php :: execcommand insert video 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =