¿Que api o que herramienta permite modificar un contenido html? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

¿Que api o que herramienta permite modificar un contenido html?

Lo que quiero hacer es mostrar cursos los cuales van cambiando de fecha y con mis conocimientos básicos solo se poner la información sin modificar, espero me entiendan

5th Jul 2022, 4:17 AM
Emiliano Martinez Peña
Emiliano Martinez Peña - avatar
2 Answers
+ 4
HTML is only suited to define the structure of a web page. If you want dynamic content, you need to use real programming languages. On the frontend, you can use JavaScript. This would allow a single user to change some piece of data on the web page, and save it in local storage, session or cookie. But the the changed data will only be available for the same user. Typically a webpage is accessed by many users. The page is stored on a server machine, remotely from the client. To make changed data available for all the users, you need to save it on the server in a database. For this, we use server side programming languages which can be really anything, like PHP, Java, Ruby, Python, C#, Go, and many others.
5th Jul 2022, 4:54 AM
Tibor Santa
Tibor Santa - avatar
+ 1
Gracias por la respuesta
5th Jul 2022, 4:57 AM
Emiliano Martinez Peña
Emiliano Martinez Peña - avatar