when debugging I'm tired of writing :
echo 'myvar', $myvar,'<br>':
I would prefer a function like this:
function ico($input){
echo ' :', name of variable input ,' ',$input,'<br>';
}
but how do I get the name of the variable to print out from inside the function?