Posts by foxtrot • 126 points
3 posts
-
0
votes1
answer787
viewsA: How to upload xlsx file with angular and php?
I get it. Since you have it, it doesn’t work. Or you choose to use only native HTML elements, and so when you do Submit is sent by POST the file, like this: <form method="post"…
-
0
votes1
answer92
viewsA: Php - Send Login and Password to User
Phpmailer throws exceptions. So you can get a more specific error with the error that is happening. $mail = new PHPMailer(); try { // ... $mail->Send(); } catch (phpmailerException $e) { echo…
-
1
votes3
answers677
viewsA: reduce the size of an image in the database
You can also use CSS to change the image size. And I recommend that you do it proportionally, I mean, just apply the width so it wouldn’t look "forced". Your PHP code with resized CSS class.…