Hello,
please can anyone suggest how i can put 2 variables side by side, without a space to make another variable.
<?php
$hours = $_POST['hours'];
$mins = $_POST['mins'];
$time = $hours$mins;
?>
need something like that please, but keep getting errors when i try it.
Thanks