i like to create a record filing using browser or browser base. but i what my web application run without running may XAMPP for my database.
:D
i like to create a record filing using browser or browser base. but i what my web application run without running may XAMPP for my database.
:D
momonq1990 asked for a browser-based, offline record-filing solution that doesn't require XAMPP or uploading the database. That is entirely feasible — there are two broad approaches: keep everything in the browser (no server process) or package a small local app that embeds a database. Both have trade-offs around persistence, size limits, cross‑platform support and how easy it is to export or later move data to a hosted server.
Practical options worth considering:
IndexedDB quick example (add a record):
let req = indexedDB.open('recordsDB', 1);
req.onupgradeneeded = e => e.target.result.createObjectStore('records', { keyPath: 'id', autoIncrement: true });
req.onsuccess = e => {
let db = e.target.result;
let tx = db.transaction('records', 'readwrite');
tx.objectStore('records').add({ title: 'File A', date: '2014-02-14' });
tx.oncomplete = () => console.log('saved');
}; Notes and tips: handle quota errors, use Promises or a small wrapper (idb/PouchDB) to avoid IndexedDB verbosity, test across browsers, and provide simple export (JSON/CSV) so records can be backed up or moved to a hosted DB later. For an offline-first web app without running XAMPP, IndexedDB + a service worker is the most future‑proof and cross‑platform path.
Jump to Post— gabrielcastillo 40you dont have to use xampp.. you can use iis, or db2 you could get a db hosting account, or setup a small linux server with opensource software.
Jump to Post— gabrielcastillo 40you can install mysql, and apache on your computer. Also can look up noSql db's. Xampp is just a bundled easy to use product. has php mysql and apache bundled into one. But you can install all these separate on you machine.
I say that I would not beg Dani for a goddamn thing ever so fuck Dani
you dont have to use xampp.. you can use iis, or db2 you could get a db hosting account, or setup a small linux server with opensource software.
thanks gab! but there is no possibility to work it offline without xampp or server?? because i dont have plan to up load the database to my hosting
you can install mysql, and apache on your computer. Also can look up noSql db's. Xampp is just a bundled easy to use product. has php mysql and apache bundled into one. But you can install all these separate on you machine.
Yes, it is.
HTML, CSS, Javascript and Access to store data.
You can do alot of things with these tools without a web server and database server.
But all this just in local machine or in a shared folder.
Here are some javascript function to use an Access database.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.