The date string can be formatted in a smarty template like this:
$payment.creation_date|date_format:"%d-%m-%Y"
where creation_date is an element of $payment array.
The date string can be formatted in a smarty template like this:
$payment.creation_date|date_format:"%d-%m-%Y"
where creation_date is an element of $payment array.
(I should have had it posted about 15-20 days ago but could not post due to break from office for some other personal stuff. Posting it as it is now (although it is not a complete list of new features in new look and feel of gmail))
Gmail presented a whole new ‘clean’ look yesterday(that day). Here are few things i noticed at a cursory look and thus liked (merely unliked anything) many of them. I hope you also like them. Continue reading
Posting a link to the working example of HTML Form to PDF using “ezpdf” php class. I added some code to this class in order to create more advanced HTML tables cells with borders as shown in the output PDF document. Continue reading
It’s an example of useful jQuery way to limit user entering a maximum set number of character in your input fields. Example makes use of javascript substring function to limit user upto 20 character which is triggered on keyup event. It truncate anything extra to that limit.
$("input[name=Title]").keyup(function(){
var text = $(this).val();
if(text.length > 20) {
text = text.substring(0, 20);
$(this).val(text);
}
})
Recent Comments
Arvind Thakur on Simple image rotater with fadeIn fadeOut effect using jQuery
Found even more-more precised and simplest method at Jonathan Snook's blog with a demo. I am sure nothing can be...anil kiumar on Resume download of PART extension file in Firefox
yah bepsait acchi haiArvind Thakur on Simple captcha component for CakePHP 1.x
CakePHP 2.x version of this component is hereArvind Thakur on Resume download of PART extension file in Firefox
As i did not had access to website i tried to reply you last night through email address you posted...sophia on Resume download of PART extension file in Firefox
Hi, I have only part file and I made a copy of it by removing .part. later I moved it to another...