Posts by George Tavares • 81 points
4 posts
-
0
votes2
answers308
viewsA: Div alignment
If you want to keep cell dimensions as with Tables, working with the CSS display attribute can solve your problem. Display attributes corresponding to table elements: table { display : table} tr {…
-
1
votes1
answer648
viewsQ: Alternatives to Firebase FCM?
I would like to know if there are alternatives for sending push notifications without using Firebase (Google). The goal is to send push messages as simple notification or type containing JSON data,…
-
-1
votes1
answer483
viewsA: How to create client desktop application for database access without exposing security information?
Do not connect the client application directly to the database service, because if there are user names and passwords in your application code, your database will be at risk. I will give some…
-
2
votes1
answer1464
viewsA: Create and/or edit image with PHP
Yes, it is possible. There are functions that crop and resize images: http://php.net/manual/en/function.imagecrop.php http://php.net/manual/en/function.imagecopyresized.php But for more specific…