Search found 184 matches

by plouf
Sun Feb 18, 2024 4:13 am
Forum: Coding Questions
Topic: open a database
Replies: 15
Views: 833

Re: open a database

the point is that is sound like apps used from a specific group of people, and probably all inside a specific house/office

so does it really need for the GUI to be web based? a "classic" windows based win32 app should be enought imho
by plouf
Sat Feb 17, 2024 4:27 pm
Forum: Coding Questions
Topic: open a database
Replies: 15
Views: 833

Re: open a database

all the above you said can be combined PureBasic CAN create a "webserver" (apache style) check purebasci examples -> "Atomic webserver" Purebasic CAN request other http servers/download http paegs/ download files/ connect to SQL server/ create databases the ONLY thing Purebasic C...
by plouf
Thu Feb 15, 2024 6:21 pm
Forum: Coding Questions
Topic: open a database
Replies: 15
Views: 833

Re: open a database

just for info , in case OP or anyone else is looking Spiderbasic as a WEbApp only creates databases which are hold localy in browsers "temporary" memory is very dificult to access local disk databases databases from spiderbasic created in browser memory so you can not access them in windwo...
by plouf
Tue Jan 23, 2024 10:31 pm
Forum: Coding Questions
Topic: How to reset environment variables from inside Spider Basic's Code?
Replies: 4
Views: 1543

Re: How to reset environment variables from inside Spider Basic's Code?

Hy you do that ? Sb do it himself no need for this
by plouf
Sun Jan 21, 2024 10:36 pm
Forum: Coding Questions
Topic: httpRequest to get data from other domains, or how can I show informations from other websites?
Replies: 3
Views: 707

Re: httpRequest to get data from other domains, or how can I show informations from other websites?

in order to use purebasic to write a CGI app, is possible but you need to run your own cgi exe in server and config server to execute it. This is very rare at hosting companies, practically only possible with your own server and/or VPS (which is actualy again your own server) also depended on hostin...
by plouf
Sat Jan 20, 2024 10:44 pm
Forum: Coding Questions
Topic: httpRequest to get data from other domains, or how can I show informations from other websites?
Replies: 3
Views: 707

Re: httpRequest to get data from other domains, or how can I show informations from other websites?

no, it has to do with CORS , client side (browser) restriction

ANYTHING that runs in your server, including php server side scripting can access ,and send this back to your SpiderBasic Script
by plouf
Thu Dec 28, 2023 7:39 am
Forum: General Discussion
Topic: Some questions about free version of SB
Replies: 3
Views: 995

Re: Some questions about free version of SB

welcome if works locally will work remotely, most probably you have NOT "copy spiderbasic libraries" this folder , which is copied in your webapp folder should be copied to remotely webserver as well as the html and sj files, aka the whole directory. i dont know this error message (never c...
by plouf
Thu Dec 21, 2023 2:27 pm
Forum: Feature Requests and Wishlists
Topic: Tauri support
Replies: 5
Views: 2259

Re: Tauri support

whats the advantage over cordova, which already supported for android/ios, cordova CAN build win8.1+ and osx apps too
by plouf
Sun Dec 17, 2023 5:02 am
Forum: Coding Questions
Topic: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)
Replies: 8
Views: 8897

Re: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)

While it is theorically possible to do a websocket http connection to a postgre server with websocker driver (untested)

The most easy and flexible way is to interact via a server side client, php to be the easiest

Writing your own cgi client like paul did, in PB is also possible not easier thought
by plouf
Sat Dec 16, 2023 6:07 pm
Forum: Game Programming
Topic: Horizontal Roulette Game ?
Replies: 6
Views: 20774

Re: Horizontal Roulette Game ?

a possible solution is to create a long sprite (image) and display it x position shifted in every frame
DisplaySprite() support display out outside bounds so its ok

i am out of office for an example this week