Posts by Mario Barreto • 51 points
8 posts
-
0
votes0
answers180
viewsQ: Joomla error: Joomla Filesystem File::delete: Failed deleting Inaccessible file
A few days I have been facing an atypical problem with Joomla in version 3.9.5. I migrated the site from one Linux server to another and while trying to make some adjustments in the Joomla global…
-
1
votes1
answer521
viewsA: How to put a. php pagination script on my website?
First let’s define a few things, phpMyAdmin is your interface for database management, where it is done storing the records that will be recovered at some point, such as texts and etc. Your file .…
-
0
votes2
answers355
viewsQ: Storing multiple values in the same column of the database, how much is it worth?
I realize that many people encounter this doubt at some point in their development, "Do I put comma-separated values in the same column? Or create an auxiliary table?" Both questions have their…
-
0
votes0
answers283
viewsQ: How to maintain a JS function after refresh?
I’m trying to implement this function: function aumentarFont() { document.getElementById("myP").style.fontSize = "medium"; } Executes the action: <a href="#" type="text"…
-
2
votes3
answers366
viewsA: How to mount an array with bootstrap tagsinput values?
The way I solved the problem: In my form I have the following input (tagsinput): <input type="text" data-role="tagsinput" name="idrelacionado"> I receive this string in the following variable:…
-
1
votes3
answers366
viewsQ: How to mount an array with bootstrap tagsinput values?
I’m using a bootstrap tagsinput to insert values in the bd, but the values are being stored in a single string, for example: "256,257,299". I would like these values to be set in an array and look…
-
0
votes3
answers463
viewsA: How to organize quotation marks of HTML and PHP content inside echo?
Thank you very much for the answers dear Daniel and Sampaio Leal, helped me a lot, really was making some confusions with regard to the quotation marks, but also in the concatenating part,…
-
0
votes3
answers463
viewsQ: How to organize quotation marks of HTML and PHP content inside echo?
Dear Colleagues, I am faced with a certain difficulty in including a certain content within an echo, for example: I have this conditional structure: if ($row_usuario['id_relacionado'] != 0) { echo =…