Posts by Wellson Almeida • 16 points
3 posts
-
0
votes1
answer18
viewsQ: Create eloquent Query in Readable to query that take the longest date of the column and show a vehicle of each
I need to show a vehicle of each (Vehicle), which sort by larger datatime('datetime_write), how do I create this query with eloquent in the Laravel?…
-
0
votes2
answers178
viewsA: Take option value and save to a variable to register in the bank
If you use GET -> $category = $_GET['category']; If you use POST --> $category = $_POST['category']; The value of the selected option will be sent and the option value will be stored in the…
-
-1
votes2
answers104
viewsA: Convert BD to utf8
If using PDO, just add the array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8")); so on the connection it shows normal. As the example below. try { $pdo = new…