Posts by D_Alves • 101 points
7 posts
-
1
votes1
answer1232
viewsQ: Display image stored in Database
I’m creating a digital menu that contains pictures of the dishes. I stored the photo in the Mysql BD using the following code: HTML code <form enctype="multipart/form-data" method="post"…
-
1
votes1
answer1582
viewsQ: Assign value to a variable in Assembly 8086
I have the variable: simbolo db "0 $" and I also have the following function:: read_keyboard: mov ah, 1 int 21h ret Which is a simple interruption that reads from the telado, and saves what was read…
-
0
votes3
answers507
viewsA: Transform date format DD/MM/YY into MM/DD/YY into Shell Script
I just figured out how. It is possible to do using AWK as follows: data=`echo $data | awk -F/ '{ print $2"/"$1"/"$3 }'` This is very useful to get the difference between two dates.…
-
2
votes3
answers507
viewsQ: Transform date format DD/MM/YY into MM/DD/YY into Shell Script
The script reads the date of a . txt in DD/MM/YY format, and I need to convert it to MM/DD/YY format with Bash, Sed or AWK.
-
1
votes1
answer139
viewsQ: How to use the select form on the html page
I need to know what the user has chosen within a <select>. In the code below I need to know the code of the collection chosen by the user, to show the items that have not yet been collected.…
-
1
votes1
answer59
viewsQ: Share information between php pages
I am developing a WEB content and I came across a stumbling block. I have an Item Listing page (Using Jqdatatable). It turns out that in this listing there are two links, one for editing the item…
-
2
votes1
answer3931
viewsQ: Vector file content in C
I need to read a text file and store each word of the file in a vector position. The reading was done normally and the file was passed by parameter such as the amount of words. The code performs the…