![]() |
how to insert a verified logo and digital signature in the uploaded document - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: how to insert a verified logo and digital signature in the uploaded document (/showthread.php?tid=73089) |
how to insert a verified logo and digital signature in the uploaded document - kvanaraj - 03-17-2019 I want to embed a verified logo and verified date in the text field to the uploaded document. Need some suggestion guys. RE: how to insert a verified logo and digital signature in the uploaded document - InsiteFX - 03-18-2019 Is this something like what your talking about? Creating a verified badge for users with php RE: how to insert a verified logo and digital signature in the uploaded document - kvanaraj - 03-19-2019 (03-18-2019, 04:23 AM)InsiteFX Wrote: Is this something like what your talking about? but i want to save that image in folder and also db. How to embed the text Code: if(isset($_FILES['image_file'])) RE: how to insert a verified logo and digital signature in the uploaded document - InsiteFX - 03-19-2019 You can use the standard php directory and file methods to save the image to where you want. For the database just save the url link to the image in the database table. RE: how to insert a verified logo and digital signature in the uploaded document - Jorgen_121 - 03-22-2019 (03-18-2019, 04:23 AM)InsiteFX Wrote: Is this something like what your talking about? This was super helpful man, thanks a lot (I literally joined to post this comment). |