Using textbox to type days of my choice [php]

i have this code

<?php $current = strtotime("+ 30 days"); $date = date('y/m/d', $current); echo $date; ?>

output: 16/01/01

i just wanted to use textbox to type days of my choice. i need help on how to do that

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.