php - Passing parameter in html input tag -


i trying pass 2 parameter through value attribute of input tag.

below code, managed pass skucode:

 <input type=hidden value=".$row["skucode"]."&".$row["category"]." name=skucode>  <input type=submit value=edit> 

is possible pass 2 parameter? how should go doing it?

   <input type=hidden value=".$row["skucode"]." name=skucode>    <input type=hidden value=".$row["category"]." name=category> 

unless there's reason not to, way it.


Comments