Posts by mtwzim • 25 points
3 posts
-
1
votes1
answer37
viewsQ: Reduce to the Object?
I’m making a code here, with the following object: { path: 'mtw', return: 'hi', obj: { path: 'he-mele-no-lilo', return: 'hi', obj: { path: 'hawaiian', return: 'hi', obj: { path: 'swiss', return:…
-
0
votes1
answer203
viewsA: Share button event between components in an Angular project
Since the header component is not the parent of the other components, it is recommended to use the Behaviorsubject in an angular service. Creating a service You will need to create a new service for…
-
0
votes1
answer40
viewsA: Login PDO PHP com prepare
The problem is here: echo $active = $ln['active']; sure would be echo $ln["active"]; or $asset $ln["asset"]; echo $ln["active"];…