1

I want to store an array of textbox values in cookie or local storage so next time when user logs in he can see his old values

include('connect.php');
$id = $_GET['ex_id'];

$query = "SELECT * FROM workout_exercise WHERE plan_id = $id";

$res = mysqli_query($con,$query);

$ic = 0;

while($row = mysqli_fetch_array($res))
{
?>

    <input type="text" name="weight[<?php echo $ic++; ?>]" 
           id="weight[<?php echo $ic++; ?>]" 
           placeholder="enter weight">

       ......

Above is the PHP code used to generate the array of textboxes.

snorkpete
  • 14,278
  • 3
  • 40
  • 57
Akhil
  • 159
  • 1
  • 12

1 Answers1

1

JSON encode the array, effectively producing a string like "{data:'value',data1:'value1'}" which you put this in a cookie, you can retrieve when needed and decode back into a JavaScript array/object.

Example - store array in a cookie:

var arr = ['foo', 'bar', 'baz'];
var json_str = JSON.stringify(arr);
createCookie('mycookie', json_str);
Later on, to retrieve the cookie's contents as an array:

var json_str = getCookie('mycookie');
var arr = JSON.parse(json_str);

You can get the method of cookies from here How to write & read from cookies

Community
  • 1
  • 1
Agam Banga
  • 2,708
  • 1
  • 11
  • 18