<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.11" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Flex and PHP</title>
	<link>http://www.linux-mag.com/id/4062/</link>
	<description>Open Source, Open Standards</description>
	<pubDate>Mon, 22 Mar 2010 02:06:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.11</generator>

	<item>
		<title>by: leblanc meneses</title>
		<link>http://www.linux-mag.com/id/4062/#comment-336</link>
		<pubDate>Fri, 24 Aug 2007 16:19:27 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-336</guid>
					<description>&#62;increase the efficiency of the server 
greatly increases efficiency if you've ever used asp.net .. as that framework postbacks to the server on drop down list selected.. or button clicks ... ect  this requires the server to regenterate the whole page all over again.  php prado does the same.

this new model... gets the page 1 time and calls the server only when a new service is requested... and only that data is transfered .. not the full page with css, js, ect


response time is improved as ... all the data and full application is on the users computer... user sees changes automatically .. .inside the pluggin.. the pluggin creates a queue of requests being made to the server... but to the user.. they can mess with other controls while something else is occuring... much more responsive than a submit and wait for page to regenerate.</description>
		<content:encoded><![CDATA[<p>&gt;increase the efficiency of the server<br />
greatly increases efficiency if you&#8217;ve ever used asp.net .. as that framework postbacks to the server on drop down list selected.. or button clicks &#8230; ect  this requires the server to regenterate the whole page all over again.  php prado does the same.</p>
<p>this new model&#8230; gets the page 1 time and calls the server only when a new service is requested&#8230; and only that data is transfered .. not the full page with css, js, ect</p>
<p>response time is improved as &#8230; all the data and full application is on the users computer&#8230; user sees changes automatically .. .inside the pluggin.. the pluggin creates a queue of requests being made to the server&#8230; but to the user.. they can mess with other controls while something else is occuring&#8230; much more responsive than a submit and wait for page to regenerate.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: tejinderpalsingh</title>
		<link>http://www.linux-mag.com/id/4062/#comment-307</link>
		<pubDate>Tue, 21 Aug 2007 13:59:48 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-307</guid>
					<description>hey ppl, i m just nt able to understand how is it gonna increase the efficiency of the server or decrease the response time??somebody pls throw light on it....</description>
		<content:encoded><![CDATA[<p>hey ppl, i m just nt able to understand how is it gonna increase the efficiency of the server or decrease the response time??somebody pls throw light on it&#8230;.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Gokul Krishnan</title>
		<link>http://www.linux-mag.com/id/4062/#comment-303</link>
		<pubDate>Thu, 16 Aug 2007 23:16:10 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-303</guid>
					<description>I have been looking into this flex for a while, not seems to be much promising to me, although it depends upon the application also</description>
		<content:encoded><![CDATA[<p>I have been looking into this flex for a while, not seems to be much promising to me, although it depends upon the application also
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: leblanc meneses</title>
		<link>http://www.linux-mag.com/id/4062/#comment-298</link>
		<pubDate>Thu, 16 Aug 2007 22:09:32 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-298</guid>
					<description>ria also make adding web client applications into embedded environements simple and inexpensive.

Since most controllers still only support c.
Putting a website with lots of user input post backs can be a challenge to support.

I had planned to build an asp.net framework in c++ modeled after php prado but instead went with this technology - flex.

now i just need to build a soap server in c++  which is the only way to retrieve flex data... other than loadvars in a querystring</description>
		<content:encoded><![CDATA[<p>ria also make adding web client applications into embedded environements simple and inexpensive.</p>
<p>Since most controllers still only support c.<br />
Putting a website with lots of user input post backs can be a challenge to support.</p>
<p>I had planned to build an asp.net framework in c++ modeled after php prado but instead went with this technology - flex.</p>
<p>now i just need to build a soap server in c++  which is the only way to retrieve flex data&#8230; other than loadvars in a querystring
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: leblanc meneses</title>
		<link>http://www.linux-mag.com/id/4062/#comment-297</link>
		<pubDate>Thu, 16 Aug 2007 21:53:15 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-297</guid>
					<description>ria's make php a viable option again.  

Problem is you can't just drop a file into a directory and it update the site, instead your forced to compile it.  which blows from a deployment perspective.  

Think about supporting muliple themes.
for each layout you need a compiled version.
once complete you recognize you need to update a component... oops lets recompile the 10 different themes again.  -- so whats the command line to compile my large project?


ide is incomparable to visual studio.



&#62;markvan
i'll like to take a look at your graph editing project... is it publicly viewable?

http://capstone.tamu.edu/Teams/Fall%20'06/Robust%20Haven/documentation/gui.jpg - sounds like a project i created previously in c# ... I'll eventually try to see if my c# control works in xaml when xaml becomes as mature as flex.  leblanc [at] tamu [dot] edu</description>
		<content:encoded><![CDATA[<p>ria&#8217;s make php a viable option again.  </p>
<p>Problem is you can&#8217;t just drop a file into a directory and it update the site, instead your forced to compile it.  which blows from a deployment perspective.  </p>
<p>Think about supporting muliple themes.<br />
for each layout you need a compiled version.<br />
once complete you recognize you need to update a component&#8230; oops lets recompile the 10 different themes again.  &#8212; so whats the command line to compile my large project?</p>
<p>ide is incomparable to visual studio.</p>
<p>&gt;markvan<br />
i&#8217;ll like to take a look at your graph editing project&#8230; is it publicly viewable?</p>
<p><a href="http://capstone.tamu.edu/Teams/Fall%20&#8242;06/Robust%20Haven/documentation/gui.jpg" rel="nofollow">http://capstone.tamu.edu/Teams/Fall%20&#8242;06/Robust%20Haven/documentation/gui.jpg</a> - sounds like a project i created previously in c# &#8230; I&#8217;ll eventually try to see if my c# control works in xaml when xaml becomes as mature as flex.  leblanc [at] tamu [dot] edu
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: awc</title>
		<link>http://www.linux-mag.com/id/4062/#comment-296</link>
		<pubDate>Thu, 16 Aug 2007 21:26:38 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-296</guid>
					<description>This really reads more like a paid advertisement than a technical article. I think the web is already too cluttered with Flash debris that tend to slow down the user experience.</description>
		<content:encoded><![CDATA[<p>This really reads more like a paid advertisement than a technical article. I think the web is already too cluttered with Flash debris that tend to slow down the user experience.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Tim Parker</title>
		<link>http://www.linux-mag.com/id/4062/#comment-295</link>
		<pubDate>Thu, 16 Aug 2007 21:10:12 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-295</guid>
					<description>I popped over here to see what on earth flex &#38; PHP were being used for.. not an easy thing to imagine !  Alas I should have realised the capital letter in the title was significant.

Hey ho - back to me scanner/parsers :)</description>
		<content:encoded><![CDATA[<p>I popped over here to see what on earth flex &amp; PHP were being used for.. not an easy thing to imagine !  Alas I should have realised the capital letter in the title was significant.</p>
<p>Hey ho - back to me scanner/parsers :)
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: markvan</title>
		<link>http://www.linux-mag.com/id/4062/#comment-294</link>
		<pubDate>Thu, 16 Aug 2007 21:06:09 +0000</pubDate>
		<guid>http://www.linux-mag.com/id/4062/#comment-294</guid>
					<description>I've just had a team implementing in PHP and Flex, and they had endless trouble with Flex not doing what it should have done out of the can. 

If we did the project again we'd just use HTML, CSS and Javascript, together with limited use of Flex's open source competitor OpenLaszlo where we really needed some client side functionality (eg graph editing).</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just had a team implementing in PHP and Flex, and they had endless trouble with Flex not doing what it should have done out of the can. </p>
<p>If we did the project again we&#8217;d just use HTML, CSS and Javascript, together with limited use of Flex&#8217;s open source competitor OpenLaszlo where we really needed some client side functionality (eg graph editing).
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
