Data:,Everyone has talking about data today than years ago, past year (before come large ware house).people they doesn't have about any idea how can use people behaviors in to business decision & How can you make money with it? While the...
this is the way end mail with Email Template Engine .save templates in database and replace some fields and send mail
frist confige your laravel email config file
mail.php
return [
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.gmail.com'),
'port' =>...
hi guys here is basic AJAX POST on laravel 5 i hope this will help for your advance project
thank you
Route::group(['prefix' => 'ajax'], function() {
Route::get('/ajax', 'AjaxController@ajax');
Route::post('/ajaxpost', 'AjaxController@ajaxpost');
});
<pre class="java"...
function printsmcs()
{
var printsmcs = window.open('','','width=1500,height=1000');
printsmcs.document.open("text/html");
printsmcs.document.write(document.getElementById('printArea').innerHTML);
printsmcs.document.close();
printsmcs.print();
}
text area for prin...
You can use strtotime() to convert two dates to unix time and then calculate the number of seconds between them. From this it's rather easy to calculate different time periods
$date1 = "2015-03-08";
$date2 = date("Y-m-d");
$diff = abs(strtotime($date2) - strtotime($date1));
...
This article will help you to understand the power of jQuery (library of JavaScript functions) with simple
this on view page
Click me
$('#submitform').click(function () {
$.ajax({
url: "baseUrl; ?>/index.php/controllername/ajax",
data: {
data: {"ff":...
I’ve been working on a few scripts that performed some minor data collection using the Facebook Graph API as a data source. Ideally, I wanted this script to be able to run several times a day automatically, however Facebook grants access tokens that expire after 1-2 hours. Since I’m the only one that...
add this in your style .css to change the color of the scrollbars on my pages in Internet Explorer and Firefox
::-webkit-scrollbar {
width: 12px;
height: 4px;
background: rgba(111, 78, 78, 0.35);
}
::-webkit-scrollbar-thumb {
background-color: rgba(145, 36, 66, 0.99);
-webkit-border-radius:...
Here is simple example to how create Ajax link on YII CGridview
array(
'name'='Attribute name',
'header'='Attribute title',
'value'='CHtml::ajaxLink(
"link",
array("url/action"),
array(
"update"="#Ajaxvenu",
...