Search found 9 matches

by xaby
Fri Jan 10, 2025 7:52 pm
Forum: Showcase
Topic: RAD.sb, a RAD framework for SpiderBasic
Replies: 1
Views: 92111

Re: RAD.sb, a RAD framework for SpiderBasic

Happy New Year. Great to see that here.
Like to see something like a Web-Desktop (like e.g. https://dustinbrett.com with https://github.com/DustinBrett/daedalOS)

Hope, that your project will grow :roll: and sparks some interest. Kind regards.
by xaby
Fri Jan 10, 2025 7:10 pm
Forum: Feature Requests and Wishlists
Topic: Progressive Web Apps Exporter
Replies: 8
Views: 33662

Re: Progressive Web Apps Exporter

I would like to see also anything with PWA, Web-Assembly
any maybe some easy ways to use Drag'n'Drop from outsite the browser into SpiderBasic,
and what I also would like to see, is communication between SpiderBasic and PureBasic apps.
E.g. conversion with Emscripten / WebAssembly or into a ...
by xaby
Sun Jan 21, 2024 2:50 pm
Forum: Coding Questions
Topic: httpRequest to get data from other domains, or how can I show informations from other websites?
Replies: 3
Views: 3632

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

Yeah, that was, what I thought.
Is it somewhat possible to use PureBasic instead of PHP? Or does it make not much sense?
Thanks for help.
by xaby
Sat Jan 20, 2024 10:21 pm
Forum: Coding Questions
Topic: httpRequest to get data from other domains, or how can I show informations from other websites?
Replies: 3
Views: 3632

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


site$ = "https://www.google.com"

;-------> SpiderBasic

Procedure HttpGetEvent(Success, Result$, UserData)
If Success
Debug Result$
Else
Debug "HTTPRequest(): Error"
EndIf
EndProcedure

; Get the content of this file, and display it in the debug window
;
HTTPRequest(#PB_HTTP_Get,site ...
by xaby
Sat Dec 30, 2023 3:21 am
Forum: Coding Questions
Topic: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)
Replies: 8
Views: 16727

Re: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)

You are so helpful. Thanks a lot.
Have to look into it. Because of Christmas and New Year ... but first week in January I will build a small project.
Also the template thingly is very interesting.
Was thinking if I have to switch to Microsoft Entity Framework for .NET ... but I guess, SpiderBasic ...
by xaby
Sat Dec 23, 2023 11:22 pm
Forum: Coding Questions
Topic: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)
Replies: 8
Views: 16727

Re: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)

Yeah ...
I tried to use XAMPP on Windows 11 Pro.
I copied the EXE file into the XAMPP/cgi-bin/ folder
and 127.0.0.1 will direct to the XAMPP/htdocs/ folder

maybe I have to use ../ or nothing

Also I am not sure, if I set everything correctly for the rights to use EXE files.
I changed in some PHP ...
by xaby
Fri Dec 22, 2023 4:02 pm
Forum: Coding Questions
Topic: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)
Replies: 8
Views: 16727

Re: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)

I have problems to start the CGI-exe. Copied it into the cgi-bin folder. But not sure, why it will not be found.
Starting in https://127.0.0.1/cgi-bin/name-of-the-exe

nut sure, if it is a right problem or something else.
by xaby
Sun Dec 17, 2023 11:23 pm
Forum: Coding Questions
Topic: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)
Replies: 8
Views: 16727

Re: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)

The idea is, to have a "PureBasic"ish pipeline. If there is somewhere PHP involved or Pearl or what ever, the question would be, why not changing the complete project or language. So the idea is also, not rely on other stuff. To have easy maintenance.
by xaby
Sun Dec 17, 2023 3:22 am
Forum: Coding Questions
Topic: Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)
Replies: 8
Views: 16727

Connecting SpiderBasic with PostgreSQL (and maybe PureBasic)

Hello dear community,
I am a long time user of PureBasic and wanted to do some database stuff. Was starting in PureBasic and like the Gadgets and GUI and so on.
So I also wanted to have these Gadgets in the browser. So I am using SpiderBasic. And when I was trying to use the database connection, I ...