Chiwex's Posts
Nairaland Forum › Chiwex's Profile › Chiwex's Posts
1 2 3 4 5 6 7 8 9 10 11 (of 11 pages)
screenshot or images ? |
there is no excuse for failure |
I got the message |
i will give seun more than N250 million if he support rule 9 |
knowledge you can get in india, china, you can simply acquire it from lynda.com, udemy.com, tut plus, etc if only you subscribe .the difference is the certificate that you will finally acquire. |
although i want separation, this video is fake |
Note: snippet for laravel programmers 1. create a form with input having a name attribute with file as it's value 2. create a controller with the method i provided public function imageUpload(Request $request){ if ($request->hasFile('file')) { $image = $request->file('file'); $ext = $image->getClientOriginalExtension(); $filename = md5($image->getClientOriginalName()) . '.' . $ext; $image->move( public_path() . '/uploads/', $filename); return response()->json([asset('uploads/' . $filename ) ]); } } |
before i proceed, if you have completed the steps or encountered any problem during installation, let me know |
to configure your database, open .env in the your project root folder to set your desired database connection |
Note: your Questions and contributions are highly welcome This thread are for those who need support on how to install Laravel PHP framework on their local server. Installing Laravel Laravel utilizes Composer to manage its dependencies. So, before using Laravel, make sure you have Composer installed on your computer. The easiest way of installation is by downloading laravel from github and installing its dependencies. 1. Visit https://github.com/laravel/laravel and download and save to your computer. 2. Locate C:\xampp\htdocs within the htdocs folder create a root folder that will contain the framework files such as app, public etc. 3. Open your command prompt and locate C:\xampp\htdocs\ < your project root folder> 4. Run composer update to install Laravel framework dependency |
1. can Inherit variables from the parent scope with use keyword <?php $message = 'hello'; // No "use" $example = function () { var_dump($message); }; echo $example(); // Inherit $message $example = function () use ($message) { var_dump($message); }; echo $example(); |
Anonymous functions, also known as closures, allow the creation of functions which have no specified name. They are most useful as the value of callback parameters, but they have many other uses. 1. in php, a closures is a function without a name which can be stored in function as a variable; <?php $greet = function($name) { printf("Hello %s\r\n", $name); }; $greet('World'); $greet('PHP'); ?> |
recursion in programming is a function that repeat by itself for example, if you want to loop menu items from a database table and the items are nested you have to use the primary_id to determine the level. you need to write a code that will repeat a function until a certain condition is met. |
Nairaland.com is currently running on a free forum script called simple machine forum |
SOME PEOPLE LIKE TO INSULT OTHER FOR NO REASON |
partial |
nice |
are u looking for a php, JavaScript, laravel, html and css, joomla, wordpress professional website developer or tutor call: 08186311863 email: donchiwexco@gmail.com |
are u looking for a php, JavaScript, laravel, html and css, joomla, wordpress professional website developer or tutor call: 08186311863 email: donchiwexco@gmail.com |
are u looking for a php, JavaScript, laravel, html and css, joomla, wordpress professional website developer or tutor call: 08186311863 email: donchiwexco@gmail.com |
are u looking for a php, JavaScript, laravel, html and css, joomla, wordpress professional website developer or tutor call: 08186311863 email: donchiwexco@gmail.com |
are u looking for a php, JavaScript, laravel, html and css, joomla, wordpress professional website developer or tutor call: 08186311863 email: donchiwexco@gmail.com |
are u looking for a php, JavaScript, laravel, html and css, joomla, wordpress professional website developer or tutor call: 08186311863 email: donchiwexco@gmail.com |
are u looking for a php, JavaScript, laravel, html and css, joomla, wordpress professional website developer or tutor call: 08186311863 email: donchiwexco@gmail.com |
source pls |
if you want to learn software development, Java can help |
I will post my own codes tomorrow |
baum is easy you can CREATE ADD UPDATE DELETED MOVE UP AND DOWN UR CATEGORIES without steers remember after implementing the package using a controller you can reuse it for any project |
use Baum laravel package I always us it for unlimited category |