<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>ClarkePeter's Weblog</title>
	<link>http://ztags4xforms.com/wordpress</link>
	<description>Xforms and PHP</description>
	<lastBuildDate>Sun, 17 May 2009 10:25:05 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>W3C is a-okay; the multi-column layout module CSS3</title>
		<description><![CDATA[The W3C&#8217;s job is setting standards, and as such, they make rules&#8211;rules that compliant browsers need to follow. As we know, any person or group that has to make rules often ruffle others&#8217; feathers for a whole myriad of reasons. Rules are rigid&#8211;especially with computer standards. People like flexibility and the &#8220;old&#8221; comfortable way of [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=76</link>
			</item>
	<item>
		<title>Be careful with code copying</title>
		<description><![CDATA[If you copy any codes from my posts be aware that you&#8217;ll have to replace all quotation marks and apostrophes and double dashes in your regular text editor.
]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=1</link>
			</item>
	<item>
		<title>Xforms Multiple Constraints</title>
		<description><![CDATA[Here is an example code for how to do multiple constraints on a form.

&#60;?xml version=&#8221;1.0&#8243; ?&#62;
&#60;?xml-stylesheet href=&#8221;xforms.css&#8221; type=&#8221;text/css&#8221;?&#62;
&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;
xmlns:xf=&#8221;http://www.w3.org/2002/xforms&#8221;&#62;
&#60;head&#62;
&#60;title&#62;Using XForms&#60;/title&#62;
&#60;xf:model id=&#8221;login&#8221;&#62;
&#60;xf:instance xmlns=&#8221;"&#62;
&#60;verifyUser&#62;
&#60;userID1/&#62;
&#60;userID2/&#62;
&#60;password1/&#62;
&#60;password2/&#62;
&#60;email1/&#62;
&#60;email2/&#62;
&#60;/verifyUser&#62;
&#60;/xf:instance&#62;
&#60;!&#8211;  This will NOT work!! (although it will work for a singlen constraint)
&#60;xf:bind constraint=&#8221;//userID1=//userID2&#8243; /&#62;
&#60;xf:bind constraint=&#8221;//password1=//password2&#8243;/&#62;
&#60;xf:bind constraint=&#8221;//email1=//email2&#8243;/&#62;
&#8211;&#62;
&#60;xf:bind nodeset=&#8221;//userID1&#8243; constraint=&#8221;.=//userID2&#8243;/&#62;
&#60;xf:bind nodeset=&#8221;//password1&#8243; constraint=&#8221;.=//password2&#8243;/&#62;
&#60;xf:bind nodeset=&#8221;//email1&#8243; constraint=&#8221;.=//email2&#8243;/&#62;
&#60;xf:submission action=&#8221;viewsubmitdata.php&#8221; method=&#8221;post&#8221; id=&#8221;loginsubmit&#8221;/&#62;
&#60;/xf:model&#62;
&#60;/head&#62;
&#60;body&#62;
&#60;xf:input ref=&#8221;//userID1&#8243; model=&#8221;login&#8221;&#62;
&#60;xf:label&#62;Username1 &#60;/xf:label&#62;
&#60;/xf:input&#62;
&#60;xf:input ref=&#8221;//userID2&#8243; model=&#8221;login&#8221;&#62;
&#60;xf:label&#62;Username2 &#60;/xf:label&#62;
&#60;/xf:input&#62;
&#60;xf:input ref=&#8221;//password1&#8243; [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=75</link>
			</item>
	<item>
		<title>An Xquery article by Kurt Cagle</title>
		<description><![CDATA[XQuery, the Server Language
An Xquery article by Kurt Cagle.
]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=74</link>
			</item>
	<item>
		<title>A better Legendary Toggle</title>
		<description><![CDATA[I put a toggle inside a legend simply because it just popped in my head to try it. This same procedure could work with any type of grouped data without having a legend at all (see Switch/Case Toggle Template or Using Switch Case as a drop down box).
In my post  Xforms: The Legendary Toggle
I [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=73</link>
			</item>
	<item>
		<title>Thoughts on xforms php and the DOM</title>
		<description><![CDATA[Anyone who has followed my blog knows that I use php to parse my xml data by simply putting my data into an indexed array or an associative array and then manipulating the data as you would any other arrayed data (see http://clarkepeters.wordpress.com/2007/09/02/parsing-without-the-dom-or-simplexml-in-php/.    I&#8217;m not advocating, however, that this is the best [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=72</link>
			</item>
	<item>
		<title>Hiding dropovers with CSS and Xforms</title>
		<description><![CDATA[A dropover is a drop box that is intended to drop down over any elements that are displayed below it.
For an example see Drop Down over/above lower text  (Xforms Switch and CSS).  In fact, you&#8217;ll need to look over that post to get an idea of what&#8217;s going on here (you may want [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=71</link>
			</item>
	<item>
		<title>No files selected (using xf:bind and relevant)</title>
		<description><![CDATA[I have an xhtml+xforms form in which users are viewing or deleting files from their server. (see earlier posts if you want to know more).
The file names are stored in an xml instance that the xforms is based on. The file names are listed as items in an xf:select1 control (actually in this case, it’s [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=59</link>
			</item>
	<item>
		<title>Drop Down over/above lower text  (Xforms Switch and CSS)</title>
		<description><![CDATA[Here are some images that show how the  Switch/Case Toggle works  (see   Switch/Case Toggle Template ) .  In this particular example, notice how the box drops down above the division below it  rather then pushing that division down (which is how it normally operates without any CSS styling).  [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=51</link>
			</item>
	<item>
		<title>Switch/Case Toggle Template</title>
		<description><![CDATA[Here&#8217;s template I keep handy for what I call my switch/case toggle box&#8211; I use it especially for tips and notes but it could be used for just about anything.  
&#60;!-- ********** SWITCH/CASE TOGGLE***************************** --&#62;
&#60;!-- Lorem ipsum --&#62;
           &#60;xf:switch&#62;
      [...]]]></description>
		<link>http://ztags4xforms.com/wordpress/?p=48</link>
			</item>
</channel>
</rss>
