questions/web-development/page/47
Hello, To do the same as mail() PHP ...READ MORE
Hello @kartik, One of the methods it provides ...READ MORE
Hii @kartik, Laravel intercepts all input. If you're ...READ MORE
Hello @kartik, in Laravel's inbuilt auth system, the ...READ MORE
Hii, Just unset the node: $str = <<<STR <a> ...READ MORE
Hello @kartik, You upgraded to PHP 7, and ...READ MORE
Hello @kartik, By default, blade doesn't have @break and @continue which are ...READ MORE
Hello @kartik, You can use: Request::url() to obtain the current ...READ MORE
Hii, Filters can be passed parameters, like the ...READ MORE
Hii, Try this command: php -S localhost:8000 -t public Then ...READ MORE
Hello @kartik, For certain attributes, React is intelligent ...READ MORE
Hello @kartik, You can use request object: request()->server('SERVER_ADDR'); Or you ...READ MORE
Hello @kartik, Try the onbeforeunload event: It is fired just ...READ MORE
Hello @kartik, You can't do it by default ...READ MORE
Hello @kartik, Use children() and each(), you can optionally pass a ...READ MORE
Hello @kartik, The "Killed" message usually means your ...READ MORE
Hello @kartik, Here is the code: var ...READ MORE
Hello @kartik, There is a very simple solution: http_build_query(). ...READ MORE
Hello @kartik, Include has the scope of the ...READ MORE
Hello @kartik, You can fetch the value of ...READ MORE
Accessing session Variable in a class file ...READ MORE
Hello @kartik, Sending an HTTP POST request using file_get_contents is ...READ MORE
Hello @kartik, You need to give the full ...READ MORE
Hello @kartik, You call it by http://localhost:8080/api/test ...READ MORE
Hello @kartik, Your response must return some sort ...READ MORE
Hello @kartik, Laravel migration generator for your existing ...READ MORE
Hello @kartik, I would use the path npm ...READ MORE
Hello @kartik, Use string concatenation: href={'/posts/' + post.id} The JSX ...READ MORE
Hello @kartik, You can get the list of Users ...READ MORE
Hello, You have to use CURL function does_url_exists($url) { ...READ MORE
Hello @kartik, nodejs v10.12 now supports this natively ...READ MORE
Hello @kartik, Use: sudo php artisan serve --host 192.168.1.101 ...READ MORE
Hello, Try this without regular expressions: <?php ...READ MORE
Hello, Try this code: // option one: 'in' takes ...READ MORE
Hello @kartik, You could use exec to call the system ...READ MORE
Hii, Use mysqli_error() As in: $sql = "Your SQL statement ...READ MORE
Hello @kartik, DB::raw() is used to make arbitrary SQL ...READ MORE
Hello @kartik, You can generate parentheses by passing ...READ MORE
Hello @kartik, Simply,we can use Model::whereNotNull('sent_at'); Or Model::whereRaw('sent_at is not null'); Thank ...READ MORE
Hello @kartik, You could try the following: Route::controller('login','AuthController'); Then in ...READ MORE
Hello @kartik, I don't think you can - ...READ MORE
Hello @kartik, php_value upload_max_filesize 30M is correct. You will ...READ MORE
Hii @kartik, Try to implement this: @if (env('APP_ENV')!='Production') Enviroment Test @endif Hope ...READ MORE
Hello, Try this: if ($thing->trashed()) { ... } READ MORE
Hello @kartik, Go to Tools->Plugins. In the Settings tab ensure that the ...READ MORE
Hello @kartik, If this is just for debugging ...READ MORE
Hello @kartik, addslashes() isn't fully adequate, but PHP's mssql ...READ MORE
Hello @kartik, This can be done with the ...READ MORE
Hello @kartik, Send data like this. $data = [ ...READ MORE
You can use isset function: if(isset($_GET['id'])) { ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.