Posts by Cleberson • 13 points
4 posts
-
0
votes2
answers89
viewsA: Pop-up Images
Well, after seeing the page I figured out there’s still no button, so get on with it: echo '<div class="emblema" style="background:url(' . $imageUrl . ') no-repeat center,…
-
0
votes2
answers89
viewsA: Pop-up Images
On a quick look at your code, your question may have two answers: 1 - I noticed that it was limited to 24 iterations: $i = 1; $e = 24; while ($i <= $e) If you leave the $variable and…
-
0
votes2
answers13435
viewsA: Formatting text in upper case - upper case
Carlos, the formatting of text is proper FRONT-END language, like html, css, javascript and others, in PHP the function of string strtoupper($text) can help you, but the most correct way is up to…
-
1
votes1
answer269
viewsQ: Add sub property dynamically
class ObjetoSimples{ var $nome; var $cargo; var $turno; } class ObjetoComposto{ var $nome; var $setor; var $equipe; } How to add new nome with turno and cargo in equipe? For example:…