There is such a record

<div> <?=$succes?> </div> 

What does <?=$succes?> Do?

Closed due to the fact that the essence of the question is not clear to the participants of freim , Yaant , mkkik , Grundy , Kosta B. Apr 25 at 20:18 .

Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .

  • What you put there before ... billion options, for such a code fragment the correct answer would be “anything” - Vearo pm
  • most likely nothing is done, just inserts the $success variable into the markup - Grundy

2 answers 2

This is short for

 <?php echo $succes?;> 

if you have $ succes declared somewhere, this fragment should output it.

    This PHP <?= Constructs the value of the $ success variable. It's like we do echo $success . The documentation describes this design.