Advertisement
vinissh

select.php

Nov 28th, 2020
733
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.   if(isset($_POST['submit'])){
  3.     if(!empty($_POST['redesocial'])) {
  4.       foreach($_POST['redesocial'] as $selected){
  5.         echo '  ' . $selected;
  6.       }          
  7.     } else {
  8.       echo 'Please select the value.';
  9.     }
  10.   }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement