Posts by Thulyo Vinicius • 98 points
2 posts
- 
		4 votes2 answers681 viewsQ: Access instantiated class attributes and methods in another classBefore the structure below: class view class controller new view() class controllerUsuario extends Controller public $usuario; as access $usuario from the "View"?… phpasked Thulyo Vinicius 98
- 
		4 votes1 answer1035 viewsA: When to use PX or % in positions?Depends on your need and layout context. If it’s a responsive layout use % to determine positioning. If it is a static layout, use PX. Remembering that % is a dynamic unit of measurement, that is,…