Posts by gubsocosta • 11 points
3 posts
-
0
votes2
answers49
viewsA: How to take Settings from a URL and put in a Button?
So you can work with querystring of a URL, you can use the interface Urlsearchparams javascript. Suppose you have the following URL: https://domain.com/?product=pant&color=blue&size=m For…
-
0
votes1
answer77
viewsA: Update class data with Array in Laravel
The way you defined the fields of the type select will only allow a value to be selected. If you want multiple options to be selected, you will have to set in the field select the attribute…
-
1
votes2
answers474
viewsA: Regular expression to filter the first paragraph between tags using PHP
If the content you are looking for is not from a page rendered by a template engine or pre-processed by JS, this code can help you. <?php $curl = curl_init(); $url = "http://suapagina.html";…