questions/web-development/page/49
Hello, Php has a function for this, just ...READ MORE
Hello @kartik, Since you're using XAMPP, uncomment the ...READ MORE
There is a way of doing it ...READ MORE
Hello @kartik, Instead of using HTML comments (which have ...READ MORE
Hello @kartik, Use: $(".myCheckbox").attr('checked', true); // Deprecated $(".myCheckbox").prop('checked', true); And if ...READ MORE
Hello @kartik, If only using IPv4: use ip2long() to convert the ...READ MORE
Hello @kartik, Suppose, item_id is an integer identity column in items table ...READ MORE
Hello @kartik, Since Laravel uses config files to ...READ MORE
Hello @kartik, If you're already logged into the ...READ MORE
Hello @kartik, Use window.open(): var win = window.open('http://edureka.co/', '_blank'); if (win) ...READ MORE
Hello @kartik, You can have jade include a ...READ MORE
Hello @kartik, To get action name, you need ...READ MORE
Hello, You could create a custom Laravel directive. You ...READ MORE
Hello, Never use 777 for directories on your ...READ MORE
Hello @kartik, Delete an existing Model $user = User::find(1); $user->delete(); Deleting ...READ MORE
Hello @kartik, As long as app.use(authChecker); is before app.use(app.router); it will get ...READ MORE
Hello, Try this code: preg_match('/[a-zA-Z]+<\/a>.$/', $lastgame, $match); print_r($match); Using / as a delimiter ...READ MORE
Hello @kartik, find this line in php.ini : ;extension=soap then ...READ MORE
Hii, For Laravel 5, In the tests directory there should ...READ MORE
I'm making a command for my discord ...READ MORE
Hii, Use the --no-scripts flag to prevent artisan from executing ...READ MORE
Hey @kartik, First you have to go to ...READ MORE
Hello @kartik, ou can use strtok to get string before ...READ MORE
Hello @kartik, To finish lodash#forEach method use return false; statement: _.forEach(oIncludedFileMap, function(aIncludedFiles, sKey) ...READ MORE
Hello @kartik, The @ symbol is the error control operator ("silence" or "shut-up" ...READ MORE
Hello, Either decode them using html_entity_decode or remove them using preg_replace: $Content ...READ MORE
Hello, The ./configure command is part of the compilation process ...READ MORE
Hey @Marium, What do you mean by "the ...READ MORE
Hello @kartik, npm-check-updates is a utility that automatically adjusts ...READ MORE
Hello @kartik, Use JSON.parse function isJson(str) { ...READ MORE
Hello @kartik, Use: Device.updateMany({}, { cid: '' }); Hope it ...READ MORE
Hello @kartik, You can use following technique to ...READ MORE
Hello @kartik, The easiest way to handle this ...READ MORE
Hello @kartik, Try for YUI Dom.get("gadget_url").set("value",""); with normal Javascript document.getElementById('gadget_url').value = ''; with ...READ MORE
Hello @kartik, Try the follwing snippet: nano ~/.bash_profile And ...READ MORE
Hello @kartik, Use the reference operator to get ...READ MORE
Hello @kartik, Simply running npm install solved it for ...READ MORE
Hello, To switch to PHP 4.4: AddHandler application/x-httpd-php4 .php To ...READ MORE
Hello @kartik, Do it simply by adding a ...READ MORE
Hello @kartik, You need to import your model ...READ MORE
Hello, Something like: SELECT id, email, IF(active = 1, ...READ MORE
Hello @kartik, There has been a couple of ...READ MORE
Hello @kartik, Put the data into a Buffer ...READ MORE
Use phpseclib, a pure PHP, SSH implementation. An example: <?php include('Net/SSH2.php'); $ssh ...READ MORE
Hello @kartik, Try using this code: public function up() ...READ MORE
Hello @kartik, This code does the trick // Name ...READ MORE
Hello @kartik, You have to use br when ...READ MORE
Hello @kartik, To update package.json in addition to ...READ MORE
Hello @kartik, You can launch NPM using : node ...READ MORE
Hello, To create both of the created_at and updated_at columns: $t->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP')); $t->timestamp('updated_at')->default(DB::raw('CURRENT_TIMESTAMP on update ...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.