Posts by Claudia • 121 points
14 posts
-
0
votes2
answers1681
viewsQ: C# - Reference a variable from another method
I have two methods and I want to find a variable from one method to the other. It is the variable base64 who is in the function base64Decode. The code is as follows:: public class WK_UpdateAlvo :…
-
1
votes1
answer160
viewsQ: MVC - edit form not working - codeigniter
I have a form printing a user’s data. I want the user to be able to edit that data. But it is giving me an error in the view: Undefined variable: list e Invalid argument supplied for foreach(). My…
codeigniterasked Claudia 121 -
1
votes2
answers918
viewsQ: MVC - pass a php variable to the angular.js controller
I’m making a list and I want to pass the values of a model to the algular script that is in the view. Model: function getAllDisplayable_all() { $this->db->select('id_menu, nome, descricao,…
-
1
votes1
answer450
viewsQ: Angular.js - Filter an array in a table based on user input - HTML
I want to make a table in which the td are the name and price of an item. And I want the user to be able to search for an item by its name through a input. This is already working. But the table is…
-
0
votes2
answers74
viewsQ: Select where the id of a previously selected is fetched
I’m on a page where you’re printing out a menu. And underneath this data I want you to show me the ingredients of this menu, and I will search them from a list of ingredients. Controller: function…
-
1
votes1
answer208
viewsQ: Codeigniter - cannot print select values in view
Good, I’m trying to make a page that shows the user data that is logged in. Model: function getAllDisplayable3() { $username = $this->session->userdata('username');…
-
1
votes1
answer191
viewsQ: Codeigniter - select and print values
Good, I’m trying to print values on a select page I did on a model. But it gives me the error: Undefined variable: login. Controller: function perfil() { $this->load->model('perfil_model');…
-
1
votes2
answers795
viewsQ: Listing in PHP by clicking button and showing more results that don’t keep CSS?
I created a list that displays 6 results and below I have a "Show more" button that calls another query that displays 4 results. However, the results of this last query do not keep the CSS. It…
-
1
votes1
answer272
viewsQ: Jquery - click button to do the listing show and button Hide?
Good, I implemented a listing and I have a button where more elements appear. However, I want this button to disappear. I implemented this code, but the button does not disappear: <script>…
-
1
votes1
answer711
viewsQ: Clicking on "Show More" button displays only 1 more result
I made a list in which 6 elements initially appear and when you click on a button 4 more appear. The database only has 10 elements. the code is: <div class="row"> <?php…
-
0
votes0
answers110
viewsQ: CSS - Row with col-Md-6 containing photos is not correctly aligned
I have a list of eight photos, and then I have a button that carries two more photos. However, the photographs do not appear correctly aligned as a hole always appears without any photograph. The…
-
0
votes1
answer758
viewsQ: Phonegap build is not compatible with php. How to access a database?
I created an html website and accessed the mysql database by php. I passed the application to my android through the adobe cloud phonegap build and I realized that it will not fetch the data by php…
-
0
votes1
answer324
viewsQ: PHP Mailer SMTP - Does not work
The code I have is this:: require_once ( 'class.phpmailer.php' ); $Mail = new PHPMailer(); $Mail->IsSMTP(); $Mail->Host = ""; // O QUE COLOCAR AQUI?? $Mail->SMTPDebug = 0; // 2 to enable…
-
2
votes1
answer567
viewsQ: Form does not do the action
I created a form where I want to enter data in the database, but I don’t want the user to enter the data, so I put display:block in the form. However when I click the button nothing happens. The…