On Thu, 15 Mar 2007 19:39:10 -0500
"Whil Hentzen (Pro*)" <[EMAIL PROTECTED]> wrote:

> So with mod python, you'd build an HTML page, embed python functions
> in it, call it from your browser (index.py), and it works like PHP?

Sure, your HTML page could look something like this.

<html>
  <table>
    <tr>
<!-- the "<%" starts the block for the the python code. -->
<%
for c in "Whil":
  req.write("<td>%s</td>" % c)
#endfor
%>
    </tr>
  </table>
</html>

 
> I just might be able to wrap my head around THAT one. Anything more, 
> though, and I'll have to dump the "Rock Stars who've died by choking
> on their own breakfast" list from core.

No need to do anything drastic like that. 


_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to