Posts by Rafael • 133 points
4 posts
-
2
votes1
answer285
viewsQ: Create a folder with a given name
I’m trying to create a folder with a certain name but I don’t know why it always appears bin+name. Example: If secondArg = dot then the folder name becomes bindot. Is it because I’m running in the…
-
0
votes1
answer499
viewsQ: Print two foreach variables in a table in different columns - codeigniter
I am trying to print a table that accesses the database and inserts the different values of each array in each column. The problem is not printing the values correctly.. Controller: private function…
-
0
votes2
answers106
viewsA: assign radio value found in sql - Codeigniter
<input type="radio" <?php if (isset($genero) && $genero=="masculino") echo "checked";?> name="genero" value="masculino"> Masculino…
-
1
votes2
answers106
viewsQ: assign radio value found in sql - Codeigniter
I want the user to be able to see the data you entered in your log when loading the data update page. I can see the data that is in type=text but not in type=radio. View: <?php foreach…