Search found 17 matches

by TheMexican
Wed Dec 27, 2017 5:06 pm
Forum: Coding Questions
Topic: IF...ENDIF issue
Replies: 3
Views: 3215

Re: IF...ENDIF issue

:oops: :oops: :oops: :oops: :oops: :oops: :oops:

I feel the pain of embarrassment !!
by TheMexican
Wed Dec 27, 2017 12:32 am
Forum: Coding Questions
Topic: IF...ENDIF issue
Replies: 3
Views: 3215

IF...ENDIF issue

I don't understand why this code doesn't work. The issue is on the Procedure btnLogin_Action() If statement on line 39. I cannot get it to be true.

Probably some stupid mistake

EnableExplicit

Global validuser.a = 0

; ------------- Connects to Employees Collection on Restdb.io ...
by TheMexican
Sun Aug 20, 2017 2:46 pm
Forum: Coding Questions
Topic: HTTPRequest PUT and DELETE
Replies: 5
Views: 4593

Re: HTTPRequest PUT and DELETE

Thanks Fred, this are great news!!
by TheMexican
Wed Aug 16, 2017 10:58 pm
Forum: Coding Questions
Topic: HTTPRequest PUT and DELETE
Replies: 5
Views: 4593

Re: HTTPRequest PUT and DELETE

that is too bad, I guess I will be using a different software.

Hope this gets implemented soon, then we can interact with REST databases easily.
by TheMexican
Wed Aug 16, 2017 4:13 pm
Forum: Coding Questions
Topic: HTTPRequest PUT and DELETE
Replies: 5
Views: 4593

HTTPRequest PUT and DELETE

I am planning on using a REST database which requires HTTPRequests using PUT and DELETE.
Is SpiderBasic capable of doing that?
I know we can use #PB_HTTP_Get and #PB_HTTP_Post but I don't see #PB_HTTP_Put or #PB_HTTP_Delete

That is the only thing keeping me from using SpiderBasic for my project ...
by TheMexican
Tue Dec 20, 2016 2:29 pm
Forum: Coding Questions
Topic: server
Replies: 4
Views: 4073

Re: server

I am not sure what you mean "Connect the application to the moongose server"
SpiderBasic has a builtin WebServer for testing purposes. When you Compile\Run it launches the web app on the mongoose Server usually port 9080 and automatically opens your default browser to show your web app.

If you want ...
by TheMexican
Tue Dec 20, 2016 1:56 pm
Forum: Coding Questions
Topic: [Solved] SetGadgetFont ???
Replies: 2
Views: 2802

Re: [Solved] SetGadgetFont ???

Thank you for the tip!!
by TheMexican
Fri May 06, 2016 3:42 pm
Forum: Coding Questions
Topic: HTTPREQUEST() Not Working
Replies: 4
Views: 4085

Re: HTTPREQUEST() Not Working

This weekend I will do some kind of instructions on how to configure CGI to run a Purebasic .exe
I will also put some example code for Purebasic CGI.

So basically there are 3 components to make it all work:
1) Abyss Webserver running CGI
2) Purebasic executable receiving the HTTP_Request, accessing ...
by TheMexican
Thu May 05, 2016 9:25 pm
Forum: Feature Requests and Wishlists
Topic: Support of SQLite and/or other databases
Replies: 7
Views: 6393

Re: Support of SQLite and/or other databases

I am also working on a Purebasic CGI app for database requests.
Basically I use Spiderbasic to make a HTTP_Request to a CGI Web App (using Abyss Web Server).
The CGI Web App returns a JSON response with the data from the database (SQLITE) to SpiderBasic.
So far is working pretty good and very fast ...
by TheMexican
Thu May 05, 2016 9:18 pm
Forum: Coding Questions
Topic: HTTPREQUEST() Not Working
Replies: 4
Views: 4085

Re: HTTPREQUEST() Not Working

I finally got it working!!