Posts by DNick • 2,862 points
107 posts
-
0
votes3
answers1263
viewsA: How to make a field from a clickable table?
There is a plugin for Jquery called datatables. It is a very flexible tool for working with tables. The datatables already have a solution to your problem here. This link shows an example containing…
-
1
votes2
answers2990
views -
0
votes2
answers2198
viewsA: Importing EXCEL data into PHP!
There were several questions in just one question, so let’s go by part: You should develop a Dashboard from scratch, so it will be easier to provide maintenance in the future. About accessing the…
-
1
votes1
answer1615
viewsA: How to handle EXCEL with PHP?
When I need to use .csv in php I use the library csv.thephpleague.com. You can install via Composer. Contains didactic examples that can help you. This way you can work cell by cell and enter into a…
-
2
votes2
answers818
viewsA: Is it possible to change the order of the commits on my branch?
I went through a similar problem and the solution that I will pass on now has served me perfectly. I’ll do it as a thorough step-by-step to also help other people who at least have the basics of…
-
0
votes3
answers64
viewsA: Delete part of a string and keep URL contained in it
@Leonardo Rafael Villas Bôas you can use regular expressions (regex). following example: Take only the URL In PHP would look like this: $conteudonoticia = '[caption id="attachment_42478"…
-
0
votes4
answers3032
viewsA: Take part of the html content stored in a variable
The problem for this case can be easily solved using regular expressions. You only need to make a small target change. by adding a class="" in the desired tag. <div id='central'> <p>O…