Posts by Dayglor • 191 points
12 posts
-
1
votes1
answer794
viewsA: Take data from PHP modal window
<div class="container"> <h2>Modal</h2> <!-- Trigger the modal with a button --> <button type="button" class="btn btn-info btn-lg" data-toggle="modal"…
-
1
votes1
answer540
viewsA: Codeigniter - Only one line of a LEFT JOIN
$this->db->group_by('cidades.id'); You will need to group the results by city.id.
-
3
votes0
answers42
viewsQ: What is the correct way to assign a function to an HTML event
In programming we know that it is possible to get the same result by following different paths, however, there are also good and bad practices. There are websites and developers that use different…
-
0
votes2
answers583
viewsA: Send emails with built-in HTML/CSS Cakephp
Good night, I was able to find a solution to my problem. First thing I had to do was remove the opening HTML tags, but I’m not sure that’s what solved it. Second thing I noticed, in my…
-
1
votes2
answers583
viewsQ: Send emails with built-in HTML/CSS Cakephp
Good afternoon! I’m trying to do something "simple", I need to send a stylized email, I don’t want to send just text, I need to insert html and css tags. Before working with cakephp I used the…
-
1
votes2
answers418
viewsA: Cakephp Does Not Redirect on the Online Server
After 3 days fighting and some "sleepless" nights,. Today I woke up inspired to solve this problem and started searching the project for php tags that had empty spaces before or after…
-
3
votes2
answers418
viewsQ: Cakephp Does Not Redirect on the Online Server
Good morning! I’m using the cakephp framework, but I’m having a problem with no solution so far... I have a login controller, commented all the login code and left only the tree $this->redirect(…
-
3
votes2
answers300
views -
0
votes1
answer88
viewsA: Dynamic parameter for Wordpress plugin
Well, I couldn’t find a more viable solution than sending a request for a second file inside my plugin (When I sent to the main it returned an error, so I tried to send to a secondary file without…
-
0
votes1
answer88
viewsQ: Dynamic parameter for Wordpress plugin
I have the need to send a parameter to mine plugin, this parameter is the folder path of that user. Variable example: $folder = /clientes/id_1/ $folder = /clintes/id_2/ $folder = /clientes/id_3/…
-
2
votes1
answer449
viewsA: Using Codeigniter within Wordpress
I managed to solve my problem, I needed to discover some new functions of .htaccess that I did not know, the problem is that I am with many doubts in mind and I can not kill the doubts on Google, do…
-
1
votes1
answer449
viewsQ: Using Codeigniter within Wordpress
I am working on a blog where within a specific page it has an iframe that points inside the server itself, calling a folder that contains the running Codeigniter. Until a few days everything worked,…