Laravel has come a long way becoming better with each new release. The new release 5.6.12 added support for signed routes and URLs along with quite a few other new additions. The signed routes were added by Taylor Otwell, which provides a few new methods you can use to generate a signed route and a temporary signed route….
Tag: PHP
Get youtube video time duration
We can use a PHP function to get the YouTube video duration. Before that, you should have Google API Key 1.Create Google API and get API key from Goog’s official website https://console.developers.google.com One important Note. At the time of creating API, leave the below option blank ” Accept requests from these HTTP referrers (web sites) (Optional)”….
Major security issues facing by the websites
Vulnerabilities Severity 1) Cross Site Scripting HIGH 2) File Upload Vulnerability HIGH 3) Directory Listing Vulnerability HIGH 4) Unencrypted Login Pages HIGH 5) Session Hijacking HIGH 6) Cross Site Request Forgery(csrf) HIGH 7) Weak Captcha Implementation MEDIUM 8) Cross Frame Scripting(css) MEDIUM 9)Internal Error Handling MEDIUM 10)Cookies are not marked as HTTPOnly LOW Recommendations…
Zend magento(PHP) developer vacancy at kadavanthra cochin
There is a good opportunity of Zend/magento developer at kadavanthara. Magento is a + . If some body join he will be the 4th person in that company. Job Position: PHP zend/magento developer. Salary: Negotiable Experience: 2+ yrs Requirement:Immediate Interested candidates can send your resume to aneesh@2HATSLOGIC.COM Contact No: +91 9526138575 Note:Please put reference of …
How to download or print a page using PHP and javascript
jQuery(‘.payment-print’).live(‘click’, function() { var sUrl = jQuery(‘#base-url’).val() + ‘/jobs/paymentprint/id/’ + jQuery(this ).attr(“id”); jQuery.post(sUrl, function(data){ var HTML = data; var WindowObject = window.open(” “, “PrintWindow”, “width=769,height=601,top=40,left=40,toolbars=no”); WindowObject.document.writeln(HTML); WindowObject.document.close(); WindowObject.focus(); WindowObject.print(); WindowObject.close(); }) });