Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 8069 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

i'm looking at putting a number of customer databaes on the web.

But i only have basic knowlege in using the web server connector and little knowlege in the web side of things.

i will have a web server where the dbs will reside.

i need to make the front end look something like profesional! and also maybe need the customers to interact with the databases over the web - if this is possible.

i don't know any web languages so will need to learn 1 or more.

which language would you recomend i learn?

is java of use in this area?

Thanks,

ricardo

Posted

Just HTML and CDML to start with. The CDML interacts with the DB over the web.

Download the "CDML Reference" database from the Filemaker site.

Check-out the WebCompanion and anything you can find on Custom Web Publishing (CWP).

Garry

Posted

OK, here is how it all works:

1. Query the database with either a URL or Form:

URL: http://address:port/FMPro?-db=mydb.fp5&-lay=mylayout&-format=myfmt.html&-findall

Form:

<form action="FMPro" method="post">

<input type="hidden" name="-db" value="mydb.fp5">

<input type="hidden" name="-lay" value="mylayout">

<input type="hidden" name="-format" value="myfmt.html">

<input type="submit" name="-findall" value="List DB">

</form>

2. The Format file:

<html><head></head><body>

Field1 Field2 Field3<br>

[FMP-Record]

[FMP-Field:field1] [FMP-Field:field2] [FMP-Field:field3]<br>

[/FMP-Record]

</body></html>


Have the DB shared with "WebCompanion" and the Format file located in the "Web" folder within the Filemaker program folder.

This should get you started.

All the best.

Garry

Posted

It always helps to know HTML, but if you are lazy to learn the syntax and the quirks of browsers get something like Dreamweaver or GL 5 -- the GL 6 has serious bugs.

Then insert the CDML tags into layout mode.

Seriously -- the HTML is just 10-20% of the job, 80% is the tuning of HTML to be compatible with browsers. And there is the necessary CDML.

Or ask someone to produce the HTML for you, any student can do some HTML these days.

This topic is 8069 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.