Concat 3 field in a query

A

Anonymous

Guest
I'm not quite sure what you're asking, or even what your problem is ("doesn't work" doesn't help us at all) but it seems to me the following would work:

Code:
<?php

$var = $_POST['PO_Year'] . '-' . $_POST['PO_Month'] . '-' . $_POST['PO_Day'];

?>
 
Back
Top