Re: Advice for site design

2010-10-06 Thread Thomas Broyer
On Oct 5, 11:45 pm, nick kov nickko...@gmail.com wrote: I'm creating a site which will have a sign up screen, a login system, and then interaction with the site once you login. My question is, can I mix GWT with PHP in a healthy manner? I don't know how well GWT handles client-server

Re: Advice for site design

2010-10-06 Thread Georg Sendt
You can use REST. Create some PHP-REST services and use them on the GWT site. There are some amazing apps develop with PHP backend and GWT frontend. For example: http://demo.qualityunit.com/pax4/merchants/login.php#login Regards, Georg On 5 Okt., 23:45, nick kov nickko...@gmail.com wrote:

Re: Advice for site design

2010-10-06 Thread RPB
Here is my site, similar to what you describe, built with a PHP backend and GWT frontend: http://www.yournextfilm.com Haven't had any problems building in this way. GWT deals with cross browser compatibility and communicates with PHP (-MySQL) via REST. I wouldn't use pure PHP with no GWT at all!

Re: Advice for site design

2010-10-06 Thread ricu
Web Toolkitgoogle-web-toolkit@googlegroups.com Reply-To: google-web-toolkit@googlegroups.com Subject: Advice for site design I'm creating a site which will have a sign up screen, a login system, and then interaction with the site once you login. My question is, can I mix GWT with PHP

Re: Advice for site design

2010-10-06 Thread nick kov
thanks for all the advice, that helped a lot. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Advice for site design

2010-10-05 Thread nick kov
I'm creating a site which will have a sign up screen, a login system, and then interaction with the site once you login. My question is, can I mix GWT with PHP in a healthy manner? I don't know how well GWT handles client-server interactions. But should I stick to pure GWT for ease and cross

Re: Advice for site design

2010-10-05 Thread Y2i
I decided to use end-to-end Java solution (GWT, Jetty, and even considering replacing PostgreSQL with Derby), but GWT is also compatible with PHP on the server. http://code.google.com/webtoolkit/doc/latest/tutorial/JSONphp.html I think you can also embed PHP client code for authentication. For

Re: Advice for site design

2010-10-05 Thread nick kov
interesting...thanks! , anybody else have any input? On Oct 5, 7:03 pm, Y2i yur...@gmail.com wrote: I decided to use end-to-end Java solution (GWT, Jetty, and even considering replacing PostgreSQL with Derby), but GWT is also compatible with PHP on the

Re: Advice for site design

2010-10-05 Thread Paul Grenyer
-toolkit@googlegroups.com Subject: Advice for site design I'm creating a site which will have a sign up screen, a login system, and then interaction with the site once you login. My question is, can I mix GWT with PHP in a healthy manner? I don't know how well GWT handles client-server interactions