On 4/23/07, Rafael Vallejo GMAIL <[EMAIL PROTECTED]> wrote: > Normally if you want to create RealBasic programs the way would be to > create a cgi that makes the job, there are no plugins as far as I know, > but there is an http server based on RealBasic search the forums I > remember I saw it somere.
<plug> You are possibly referring to my Inline HTTP class, which allows you to easily handle HTTP requests much like PHP does in terms of variable access (not like PHP's ability to inline code within HTML). For example, Inline HTTP provides REQUEST, GET, POST, COOKIE, and SERVER accessor methods to give you access to form- and client-relevant data (eg, POST( "email" ) would be analogous to $_POST["email"] in PHP). Inline HTTP examples use the ServerSocket class to allow for multiple simultaneous connections (which requires RB Pro), but this is not necessary, as your instantiated inline_http object can simply re-Listen after it is done with its connection. </plug> -- -Adam dingostick.com _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
