I have the following doubt I have an if q if it is a process shows some things but if it is any other shows other things. To the naked eye like this:
<?php
if($proceso == 'Tp'){
echo "Todo esto que ve TP";
}
else{
echo "Todas estas cosas que ven los otro";
}
?>
How can I add a process that sees what it sees 'Tp' and what others see, that Tp sees the Tp, the others see their things and that new specific process sees what everyone sees and what they see. others?
Is it with an if or do I have to use a switch?
Case 1 ve esto
Case 2 ve esto
Default Case 1 Case 2
I did not find it but I can put a case to see what other Case's see and what default to ring the case 1 and case 2?
If it looks bad, I'm sorry from a celu and I do not see if it fits well what is code.