Could I avoid the limitation of 2000 characters in GET URL data append? Could anyone help me? I want to append PHP array in URL. Code is as below:
$url = array(
['ABC'] => 10,
['XYZ'] => 20
)
<a href="abc.php?order_number=' . $order_number . '&v=' . time() . '&arr=' . urlencode(serialize($url)) . " target="_blank"></a>
Here I use an array of count 2. If I will use an array of count 30-40. Will it be affected to the limitation of GET url?