How can we apply date validation in laravel for dd-mm-yyyy format?

|
kameshindore 2020-06-10 07:54:33
maybe anything is missi g
Akhilbansal122 2020-06-10 07:55:11
luv_php-20020.jpg

kameshindore 2020-06-10 07:55:19
is ur server running fine?? and meets all requirements for project.
rohit267 2020-06-10 07:55:38
Akhilbansal122 2020-06-10 07:55:11

update your windows to latest version

rohit267 2020-06-10 07:55:52
windows 7 is not supported now
kameshindore 2020-06-10 07:55:57
Akhilbansal122 2020-06-10 07:55:11

its xampp or wamp?

Akhilbansal122 2020-06-10 07:56:15
Xamp
kameshindore 2020-06-10 07:57:04
great
kameshindore 2020-06-10 07:57:09
it can be fixed
rohit267 2020-06-10 07:57:19
Akhilbansal122 2020-06-10 07:56:15
Xamp

or turn on windows update and install all

kameshindore 2020-06-10 07:57:20
pm me
kameshindore 2020-06-10 07:59:03
check ur msg
kameshindore 2020-06-10 07:59:51
rajuteli 2020-06-10 06:36:52
There is sample php code on GitHub
I am trying to run so I didn’t run

need to check that code one raju.

kameshindore 2020-06-10 08:05:01
fine 👍
P R 2020-06-10 12:16:28
Is there any vacancy for PHP developer for 3 years
kumar_narayan 2020-06-10 17:17:18
Admin have you deleted my query?
harsh_modi 2020-06-10 17:26:52
luv_php-20043.jpg

i_am_ro0t 2020-06-10 18:49:01
kumar_narayan 2020-06-10 17:17:18
Admin have you deleted my query?

yeah

Kriti Agarwal 2020-06-10 20:14:07
How can we apply date validation in laravel for dd-mm-yyyy format?
Aagam Jain 2020-06-10 21:10:44
luv_php-20058.jpg

Aagam Jain 2020-06-10 21:10:44
luv_php-20057.jpg

kameshindore 2020-06-10 21:12:47
Kriti Agarwal 2020-06-10 20:14:07
How can we apply date validation in laravel for dd-mm-yyyy format?

kirti can u elobrate lil bit

kameshindore 2020-06-10 21:12:57
what are u trying to achieve
kameshindore 2020-06-10 21:16:30
guys anyone worked with vtiger 6.2 php crm?
kumar_narayan 2020-06-11 05:04:04
i_am_ro0t 2020-06-10 18:49:01
yeah

Why, my client need, is this anything wrong about question?

rai_saaab 2020-06-11 05:15:29
Hi all. Need to make a php. Can any one do it for me..
Mubarhak 2020-06-11 08:14:21
thanks rose
Mubarhak 2020-06-11 08:15:33
my code loads html in the local server but won’t load on server

it loads complete blank page on live server

only displays
db success connection

rohit267 2020-06-11 08:39:15
Mubarhak 2020-06-11 08:15:33
my code loads html in the local server but won’t load on server

it loads complete blank page on live server

only displays
db success connection

check your code then

Mubarhak 2020-06-11 08:40:20
<?php
include ‘./vendor/autoload.php’;
use TwilioRestClient;
include ‘db.php’;

$conn = OpenCon();
echo “Connected Successfully”;
CloseCon($conn);

$dotenv = DotenvDotenv::createImmutable(__DIR__);
$dotenv->load();

if(isset($_POST[‘mobile’]) && isset($_POST[‘msg’])){

// Your Account SID and Auth Token from twilio.com/console
$account_sid = $_SERVER[“TWILIO_ACC_SID”];
$auth_token = $_SERVER[“TWILIO_AUTH_TOKEN”];
echo $account_sid;
// In production, these should be environment variables. E.g.:
// $auth_token = $_ENV[“TWILIO_AUTH_TOKEN”]

// A Twilio number you own with SMS capabilities
$twilio_number = $_SERVER[“number”];

$client = new Client($account_sid, $auth_token);
$message = $client->messages->create(
// Where to send a text message (your cell phone?)
‘+91737287233’,
array(
‘from’ => $twilio_number,
‘body’ => ‘I sent this message in under 10 minutes!’
)
);
if($message->sid) {
echo “Message sent!”;

}
}
error_reporting(E_ALL & ~E_NOTICE);
?>

<h2>Sending SMS using twillio api</h2>

<form action=”” method=”post”>
Enter Mobile: <br>
<input type=”text” placeholder=”Mobile Number” name=”mobile”><br>
Message<br>
<textarea name=”msg” placeholder=”Message” id=”” cols=”30″ rows=”10″></textarea><br>
<input type=”submit” value=”Submit”>
</form>

Mubarhak 2020-06-11 08:40:27
Mubarhak 2020-06-11 08:40:20
<?php
include ‘./vendor/autoload.php’;
use TwilioRestClient;
include ‘db.php’;

$conn = OpenCon();
echo “Connected Successfully”;
CloseCon($conn);

$dotenv = DotenvDotenv::createImmutable(__DIR__);
$dotenv->load();

if(isset($_POST[‘mobile’]) && isset($_POST[‘msg’])){

// Your Account SID and Auth Token from twilio.com/console
$account_sid = $_SERVER[“TWILIO_ACC_SID”];
$auth_token = $_SERVER[“TWILIO_AUTH_TOKEN”];
echo $account_sid;
// In production, these should be environment variables. E.g.:
// $auth_token = $_ENV[“TWILIO_AUTH_TOKEN”]

// A Twilio number you own with SMS capabilities
$twilio_number = $_SERVER[“number”];

$client = new Client($account_sid, $auth_token);
$message = $client->messages->create(
// Where to send a text message (your cell phone?)
‘+91737287233’,
array(
‘from’ => $twilio_number,
‘body’ => ‘I sent this message in under 10 minutes!’
)
);
if($message->sid) {
echo “Message sent!”;

}
}
error_reporting(E_ALL & ~E_NOTICE);
?>

<h2>Sending SMS using twillio api</h2>

<form action=”” method=”post”>
Enter Mobile: <br>
<input type=”text” placeholder=”Mobile Number” name=”mobile”><br>
Message<br>
<textarea name=”msg” placeholder=”Message” id=”” cols=”30″ rows=”10″></textarea><br>
<input type=”submit” value=”Submit”>
</form>

this is my code

2020-06-11 08:41:02
Hii i am begineer in codeigniter please suggest me best tutorials from basic to advance level
Mubarhak 2020-06-11 08:41:45
it works perfectly on local server but load a blank page with connection to database success msg
Mubarhak 2020-06-11 08:42:59
rohit267 2020-06-11 08:39:15
check your code then

i have used the function error_reporting(E_ALL & ~E_NOTICE); and it didn’t through any error

Acird Burn 2020-06-11 09:15:22
Need a freelance angular js laravel PHP developer
rai_saaab 2020-06-11 09:17:29
Need a php of android app
Mubarhak 2020-06-11 09:19:00
fixed
Mubarhak 2020-06-11 09:19:15
environmental file was missing
rohit267 2020-06-11 09:19:54
rai_saaab 2020-06-11 09:17:29
Need a php of android app

explain

kameshindore 2020-06-11 12:28:38
rai_saaab 2020-06-11 09:17:29
Need a php of android app

you mean php backend or admin panel??

Tejaswini Gaikwad 2020-06-11 14:34:25
Anyone familiar with Braintree payment integration?
Jamalaaaaaa 2020-06-11 15:53:01
Thanks 🙂
procrastinator12345 2020-06-11 17:06:32
I have admin panel of e-commerce site to sell. Anyone need dm me.
Akhilbansal122 2020-06-12 07:02:55
How to send email using localhost
Akhilbansal122 2020-06-12 07:03:05
My email is fail
rohit267 2020-06-12 08:04:43
Akhilbansal122 2020-06-12 07:02:55
How to send email using localhost

use phpmailer, and google smpt

rajuteli 2020-06-12 08:19:18
any one here how had worked with composer in windows can plz reply need some hekp in running sample code…
rohit267 2020-06-12 09:03:28
rajuteli 2020-06-12 08:19:18
any one here how had worked with composer in windows can plz reply need some hekp in running sample code…

what is the iron

rohit267 2020-06-12 09:03:31
problem?
rohit267 2020-06-12 09:03:34
install it
|