Skip to content

Instantly share code, notes, and snippets.

@Sohail05
Created May 24, 2018 21:04
Show Gist options
  • Save Sohail05/b58d1eab000e50c2d2b54953951a0916 to your computer and use it in GitHub Desktop.
Save Sohail05/b58d1eab000e50c2d2b54953951a0916 to your computer and use it in GitHub Desktop.
Textbox to PHP Array
<form action="URL" method="POST">
<input type="text" name="myvalue"/>
<input type="submit" value="Submit form">
</form>
<?php
$myvalue = $_REQUEST['myvalue'];
$myArray = [];
$myArray[] = $myvalue;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment