Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter lordpam

    (@lordpam)

    Hi,

    i have fixed this problem. I use an String and after X times i load the page i make a nother entry in the string with a , between. I send it to my other page (by using POST) and split this String to an array (by using explode) and i have my array on the right page without the wp-session-manager plugin.

    this ist how i fill the string:
    $string=$string.','.$new_entry #the "," is importen to split the string later. The string looks like 2,5,9,14 ....

    and this is how i split th string:
    $array_name = explode(",",$string); #I seperate the entrys by seeking the ","

    I´m sure thats many of you thinking uhh thats lame but i´m very happy thats this works.

    Thank you for reading 😉

Viewing 1 replies (of 1 total)