Posts by Davy Massoneto • 81 points
4 posts
-
1
votes2
answers54
viewsA: Decreasing the value of two fields of a table and sorting according to the result
What you want in SQL would look like this: SELECT woe.kills_permanente, woe.deaths_permanente, woe.killen_spree, woe.name, char.unban_time, char.class, woe.kills_permanente - woe.deaths_permanente…
-
3
votes1
answer3835
viewsA: PHP Digital Signature
I managed to solve the problem, solution: private function assinarPdf($pdfDocument, Certificate $certificado, $senha) { $pdf = new \FPDI(); $pdf_path = $_SERVER["DOCUMENT_ROOT"] . "\\files\\" .…
-
3
votes1
answer3835
viewsQ: PHP Digital Signature
I am trying to perform the digital signature of a PHP document through A1 certificate. $pdf = new \FPDI(); $pdf_path = $_SERVER["DOCUMENT_ROOT"] . "\\files\\" . md5(uniqid("")) . ".pdf";…
-
1
votes0
answers53
viewsQ: How Utorrent Opens by Browser
Hello, I intend to create a program that when it is called by the browser, it opens the program and runs its functions, similar as utorrent does. I did some research but found nothing so far and do…