我在wordpress网站上制作了3个不同的页面。页面的布局如下:
//firstpage
<div>
<p>What is the type of your property?</p>
<button >Residence</button>
<button>Commercial</button>
</div>
//secondpage
<div>
<p>What is the type of your commercial property?</p>
<button >office</button>
<button>restaurant</button>
</div>
//third page-defining size of the property
每个按钮都将重定向到下一页。我希望将这3页按钮的所有值都放在一个单独的表的单个列中。我希望此值在每个会话中都以这种形式保存在表中。>
category subcategory size
residence restaurant 2000
我该如何操作wordpress数据库以将其保存为3个不同的页面?