 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; forms</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/sap/forms/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 10:11:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>lookup function in a form</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/lookup-function-in-a-form/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/lookup-function-in-a-form/#comments</comments>
		<pubDate>Sun, 29 Jul 2012 21:58:37 +0000</pubDate>
		<dc:creator>SteveHayse</dc:creator>
				<category><![CDATA[6.5]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[Lookup]]></category>
		<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/lookup-function-in-a-form/</guid>
		<description><![CDATA[New Question Created by SteveHayse]]></description>
				<content:encoded><![CDATA[New Question Created by SteveHayse]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/lookup-function-in-a-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is it possible to assign more than one form element to one php variable?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/parse-error-parse-error-expecting-t_string-or-t_variable-or-t_num_string/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/parse-error-parse-error-expecting-t_string-or-t_variable-or-t_num_string/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 19:46:12 +0000</pubDate>
		<dc:creator>PatOswalt</dc:creator>
				<category><![CDATA[Array]]></category>
		<category><![CDATA[Arrays (programming)]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[Parse error]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP scripts]]></category>
		<category><![CDATA[`T_NUM_STRING']]></category>
		<category><![CDATA[`T_STRING']]></category>
		<category><![CDATA[`T_VARIABLE']]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have an HTML form file and a PHP file that are supposed to interact with eachother to save information from the form to a contactlist text file.  I had it working fine and it has been turned it, but started playing with it and now have a question. Is it possible to assign more [...]]]></description>
				<content:encoded><![CDATA[<p>I have an HTML form file and a PHP file that are supposed to interact with eachother to save information from the form to a contactlist text file.  I had it working fine and it has been turned it, but started playing with it and now have a question.</p>
<p>Is it possible to assign more than one form element to one php variable?  I want my form to have a specific text field for the area code, the prefix and the line number and then want to combine those three field into one variable.  This is not a requirement for my class, I&#8217;m just wanting to see how much I can do with this.  Here is my html code below:</p>
<pre>
&lt;html&gt;
    &lt;!--Patricia Oswalt - IT250 Unit 4 Assignment--&gt;
    
    &lt;head&gt;
        &lt;title&gt;Telephone Directory Input&lt;/title&gt;
    &lt;/head&gt;
     
    &lt;body&gt;
        &lt;h1&gt;New Directory Listing&lt;/h1&gt;
        &lt;form action="SaveDirectory.php" method="post" enctype="application/x-www-form-urlencoded"&gt;
            &lt;p&gt;Last Name &lt;input type="text" name="LastName" size="30" tabindex="1" /&gt;
            First Name &lt;input type="text" name="FirstName" size="20" tabindex="2" /&gt;&lt;/p&gt;
            &lt;p&gt;Street Address &lt;input type="text" name="StreetAdd" size="50" tabindex="3" /&gt;&lt;/p&gt;
            &lt;p&gt;City &lt;input type="text" name="City" size="30" tabindex="4" /&gt;
            State (Abbr) &lt;input type="text" name="State" size="2" tabindex="5" /&gt;
            Zip Code&lt;input type="text" name="ZipCode" size="5" tabindex="6" /&gt;&lt;/p&gt;
            &lt;p&gt;Area Code (&lt;input type="text" name="AreaCode" size="3" tabindex="7"/&gt;)
            Phone Number &lt;input type="text" name="Prefix" size="3" tabindex="8" /&gt;-&lt;input type="text" name="LineNumber" size="4" tabindex="9" /&gt;&lt;/p&gt;
            &lt;p&gt;&lt;input type="submit" value="Save" tabindex="9" /&gt;&lt;input type="reset" tabindex="10" /&gt;&lt;/p&gt;
        &lt;/form&gt;
        &lt;p&gt;&lt;a href="InputTelephone.html"&gt;Add New Listing&lt;/a&gt;&lt;/p&gt;
        &lt;p&gt;&lt;a href="contactlist.txt"&gt;Retrieve Contact List&lt;/a&gt;&lt;/p&gt;
    &lt;/body&gt;

&lt;/html&gt;
</pre>
<p>Here is my PHP code:</p>
<pre>
&lt;html&gt;
    &lt;!--Patricia Oswalt - IT250 Unit 4 Assignment--&gt;
    
    &lt;head&gt;
        &lt;title&gt;Save Directory&lt;/title&gt;
    &lt;/head&gt;
     
    &lt;body&gt;

        &lt;?php
        
        //initializing the variables
        $LastName = ($_POST['LastName']);
        $FirstName = ($_POST['FirstName']);
        $StreetAdd = ($_POST['StreetAdd']);
        $City = ($_POST['City']);
        $State = ($_POST['State']);
        $ZipCode = ($_POST['ZipCode']);
        $AreaCode = ($_POST['AreaCode']);
        $PhoneNum = ($_POST['Prefix']['LineNumb']);
            
        //confirming that all variables will contain values
        if (empty($LastName) ||
            empty($FirstName) ||
            empty($StreetAdd) ||
            empty($City) ||
            empty($State) ||
            empty($ZipCode) ||
            empty($AreaCode) ||
            empty($PhoneNum))
            echo "&lt;p&gt;You must completely fill out the form.  Please use your browser's Back button to return to the form.&lt;/p&gt;";

        else 
        //creating, writing and saving to the text file.
        $NewContact = 'contactlist.txt';
        $Contact = fopen($NewContact, 'a+');
        $output ="n $LastName n";
        $output .="n $FirstName n";
        $output .="n $StreetAdd n";
        $output .="n $City n";
        $output .="n $State n";
        $output .="n $ZipCode n";
        $output .="n $AreaCode n";
        $output .="n $PhoneNum['Prefix']['LineNumb'] n";//this is where the error in pointing to.
        echo "New Contact Saved Successfully!";
        fwrite($Contact, $output);
        fclose($Contact);

    // Split a string into an index array
        $Contacts = "$LastName;$FirstName;$StreetAdd;$City;$State;$ZipCode;$AreaCode;$PhoneNum";
        $ContactsArray = explode(";", $Contacts);
        echo "&lt;br&gt;&lt;strong&gt;Contact List&lt;/strong&gt;&lt;br&gt;&lt;br&gt;";
        for($i=0; $i&lt;count($ContactsArray); $i++) {
             echo "$ContactsArray[$I]&lt;br&gt;";
         }
    // Sort an index array
        sort($ContactsArray);
        echo "&lt;br&gt;&lt;strong&gt;Sorted Contact List&lt;/strong&gt;&lt;br&gt;&lt;br&gt;";
        foreach($ContactsArray as $Contacts) {
           echo "$Contacts&lt;br&gt;";
         }
    
        ?&gt;

    &lt;/body&gt;

&lt;/html&gt;</pre>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/parse-error-parse-error-expecting-t_string-or-t_variable-or-t_num_string/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Parsing error in a class project.  Can&#8217;t figure it out</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/parsing-error-in-a-class-project-cant-figure-it-out/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/parsing-error-in-a-class-project-cant-figure-it-out/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 18:21:30 +0000</pubDate>
		<dc:creator>PatOswalt</dc:creator>
				<category><![CDATA[Arrays (programming)]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[index arrays]]></category>
		<category><![CDATA[PHP Coding]]></category>
		<category><![CDATA[sorting arrays]]></category>
		<category><![CDATA[split strings]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is a project for a class.  I&#8217;m unable to figure it out and I&#8217;m at my wits end.  I&#8217;m not asking for someone to do the project to me, just tell me where my coding is wrong.  My html form is correct.  I just placed in on here for a reference.  My php code [...]]]></description>
				<content:encoded><![CDATA[<p>This is a project for a class.  I&#8217;m unable to figure it out and I&#8217;m at my wits end.  I&#8217;m not asking for someone to do the project to me, just tell me where my coding is wrong.  My html form is correct.  I just placed in on here for a reference.  My php code seems to work until I get to the // Split a string into an index array.  Any help would be greatly appreciated.</p>
<p>When I try to run the program through WAMP I get an error:</p>
<p><b>Parse error</b>:  parse error in <b>C:wampwwwOswaltPatricia_Unit4AssignmentSaveDirectory.php</b> on line <b>53</b></p>
<p>Line 53 is:<br />
$Contacts = &#8220;$LastName;$FirstName;$StreetAdd;$City;$State;$ZipCode;$AreaCode;$PhoneNum&#8221;;</p>
<p><b>InputTelephone.html</b></p>
<pre>
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;

&lt;html&gt;
    &lt;!--Patricia Oswalt - IT250 Unit 4 Assignment--&gt;
    
    &lt;head&gt;
        &lt;title&gt;Telephone Directory Input&lt;/title&gt;
    &lt;/head&gt;
     
    &lt;body&gt;
        &lt;h1&gt;New Directory Listing&lt;/h1&gt;
        &lt;form action="SaveDirectory.php" method="post" enctype="application/x-www-form-urlencoded"&gt;
            &lt;p&gt;Last Name &lt;input type="text" name="LastName" size="30" tabindex="1" /&gt;
            First Name &lt;input type="text" name="FirstName" size="20" tabindex="2" /&gt;&lt;/p&gt;
            &lt;p&gt;Street Address &lt;input type="text" name="StreetAdd" size="50" tabindex="3" /&gt;&lt;/p&gt;
            &lt;p&gt;City &lt;input type="text" name="City" size="30" tabindex="4" /&gt;
            State (Abbr) &lt;input type="text" name="State" size="2" tabindex="5" /&gt;
            Zip Code&lt;input type="text" name="ZipCode" size="5" tabindex="6" /&gt;&lt;/p&gt;
            &lt;p&gt;Area Code (&lt;input type="text" name="AreaCode" size="3" tabindex="7"/&gt;)
            Phone Number &lt;input type="text" name="PhoneNum" size="8" tabindex="8" /&gt;&lt;/p&gt;
            &lt;p&gt;&lt;input type="submit" value="Save" tabindex="9" /&gt;&lt;input type="reset" tabindex="10" /&gt;&lt;/p&gt;
        &lt;/form&gt;
        &lt;p&gt;&lt;a href="InputTelephone.html"&gt;Add New Listing&lt;/a&gt;&lt;/p&gt;
        &lt;p&gt;&lt;a href="contactlist.txt"&gt;Retrieve Contact List&lt;/a&gt;&lt;/p&gt;
    &lt;/body&gt;

&lt;/html&gt;
</pre>
<p>SaveDirectory.php</p>
<pre>
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;

&lt;html&gt;
    &lt;!--Patricia Oswalt - IT250 Unit 4 Assignment--&gt;
    
    &lt;head&gt;
        &lt;title&gt;Save Directory&lt;/title&gt;
    &lt;/head&gt;
     
    &lt;body&gt;

        &lt;?php
        
        //initializing the variables
        $LastName = ($_POST['LastName']);
        $FirstName = ($_POST['FirstName']);
        $StreetAdd = ($_POST['StreetAdd']);
        $City = ($_POST['City']);
        $State = ($_POST['State']);
        $ZipCode = ($_POST['ZipCode']);
        $AreaCode = ($_POST['AreaCode']);
        $PhoneNum = ($_POST['PhoneNum']);
            
        //confirming that all variables will contain values
        if (empty($LastName) ||
            empty($FirstName) ||
            empty($StreetAdd) ||
            empty($City) ||
            empty($State) ||
            empty($ZipCode) ||
            empty($AreaCode) ||
            empty($PhoneNum))
            echo "&lt;p&gt;You must completely fill out the form.  Please use your browser's Back button to return to the form.&lt;/p&gt;";

        else 
        //creating, writing and saving to the text file.
        $NewContact = 'contactlist.txt';
        $Contact = fopen($NewContact, 'a+');
        $output ="n $LastName n";
        $output ="n $FirstName n";
        $output ="n $StreetAdd n";
        $output ="n $City n";
        $output ="n $State n";
        $output ="n $ZipCode n";
        $output ="n $AreaCode n";
        $output ="n $PhoneNum n";
        echo "New Contact Saved Successfully!";
        fwrite($Contact, $output);
        fclose($Contact)

    // Split a string into an index array
        $Contacts = "$LastName;$FirstName;$StreetAdd;$City;$State;$ZipCode;$AreaCode;$PhoneNum";
        $ContactsArray = explode(";", $Contacts);
        echo "&lt;br&gt;&lt;strong&gt;Contact List&lt;/strong&gt;&lt;br&gt;&lt;br&gt;";
        for($i=0; $i&lt;count($ContactsArray); $i++) {
             echo "$ContactsArray[$I]&lt;br&gt;";
         }
    // Sort an index array
        sort($ContactsArray);
        echo "&lt;br&gt;&lt;strong&gt;Sorted Contact List&lt;/strong&gt;&lt;br&gt;&lt;br&gt;";
        foreach($ContactsArray as $Contacts) {
           echo "$Contacts&lt;br&gt;";
           }
    
        ?&gt;

    &lt;/body&gt;

&lt;/html&gt;
</pre>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/parsing-error-in-a-class-project-cant-figure-it-out/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A field from one table update two different fields in other table.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/a-field-from-one-table-update-two-different-fields-in-other-table/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/a-field-from-one-table-update-two-different-fields-in-other-table/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 02:14:43 +0000</pubDate>
		<dc:creator>Linyera</dc:creator>
				<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[sub-forms]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[TBL_Items (ItemsID, Item) and TBL_Order (OrderID, OrderItem, DeliveredItem). At TBL_Items it is possible to find an items that has equal funtion to other. (Item1=Item23) A customer asks for Item1 and with a ComboBox I select Item1 and fill OrderItem. At the moment to deliver there are not Item1 and we replace it for Item23, also [...]]]></description>
				<content:encoded><![CDATA[<p>TBL_Items (ItemsID, Item) and TBL_Order (OrderID, OrderItem, DeliveredItem).<br/><br/> At TBL_Items it is possible to find an items that has equal funtion to other. (Item1=Item23)<br/><br/> A customer asks for Item1 and with a ComboBox I select Item1 and fill OrderItem.<br/><br/> At the moment to deliver there are not Item1 and we replace it for Item23, also we update field DeliveredItem from TBL_Items with Item23.<br/><br/> I would like to have a form filtered by customer with sub-forms with all the orders for that customer, I would like to perform some changes (with a ComboBox) at an Order within the subform.<br/><br/> Thanks and regards<br/><br/>  <br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/a-field-from-one-table-update-two-different-fields-in-other-table/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>VB .NET Tabs and Forms</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/vb-net-tabs-and-forms/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/vb-net-tabs-and-forms/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 20:02:07 +0000</pubDate>
		<dc:creator>FF32</dc:creator>
				<category><![CDATA[forms]]></category>
		<category><![CDATA[TabControl]]></category>
		<category><![CDATA[VB .NET]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m creating an application that will have several tabs instead of file menu. Is there a way to do this so that I have multiple forms? I don&#8217;t want to have 1 form with all my code in it and I don&#8217;t want to create each form with the tabs on it. Basically, can I [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m creating an application that will have several tabs instead of file menu. Is there a way to do this so that I have multiple forms? I don&#8217;t want to have 1 form with all my code in it and I don&#8217;t want to create each form with the tabs on it. Basically, can I do an on click with my tab and make it call another form?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/vb-net-tabs-and-forms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use VB Script to Populate a form in IE8</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/use-vb-script-to-populate-a-form-in-ie8/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/use-vb-script-to-populate-a-form-in-ie8/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 19:27:07 +0000</pubDate>
		<dc:creator>SteveScripter</dc:creator>
				<category><![CDATA[forms]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Web forms]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I would like to use vbscript to populate pre-defined fields on forms from a website. I have written some code which should work but I must be missing something. Here is the code I have now&#8230; DIM objBrowser DIM objForm Set objBrowser = CreateObject(&#8220;InternetExplorer.Application&#8221;) objBrowser.navigate &#8220;https://accounts.craigslist.org/&#8221; objBrowser.Visible = True While objBrowser.Busy   WScript.Sleep 50 Wend [...]]]></description>
				<content:encoded><![CDATA[<p>I would like to use vbscript to populate pre-defined fields on forms from a website. I have written some code which should work but I must be missing something. Here is the code I have now&#8230; <br/><br/> DIM objBrowser DIM objForm<br/><br/> Set objBrowser = CreateObject(&#8220;InternetExplorer.Application&#8221;) objBrowser.navigate &#8220;<a href="https://accounts.craigslist.org/">https://accounts.craigslist.org/</a>&#8221; objBrowser.Visible = True<br/><br/> While objBrowser.Busy   WScript.Sleep 50 Wend<br/><br/> Set objForm = objBrowser.document.getElementByID(&#8220;Email / Handle:&#8221;) objForm.Value = &#8220;<a href="mailto:sschtupak@hotmail.com">sschtupak@hotmail.com</a>&#8221; &#8216;fill in the text box<br/><br/> WScript.Quit<br/><br/> The field is not populating and I get an &#8220;Object Required&#8221; erro on the line that starts objForm.Value&#8230; but this same code works on other sites (changed field values and website of course). Any help would be appreciated.<br/><br/> Thanks in advance<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/use-vb-script-to-populate-a-form-in-ie8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>master-detail forms</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/master-detail-forms/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/master-detail-forms/#comments</comments>
		<pubDate>Fri, 22 May 2009 18:23:04 +0000</pubDate>
		<dc:creator>Ssecrist</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[forms]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[In a master-detail form when I query the master it returns the data, then I query for the detail records and it returns the detail data. When I try to add a detail record the application is also trying to add the master. I only want the new detail record. The master already exist.]]></description>
				<content:encoded><![CDATA[<p>In a master-detail form when I query the master it returns the data, then I query for the detail records and it returns the detail data.  When I try to add a detail record the application is also trying to add the master.  I only want the new detail record. The master already exist.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/master-detail-forms/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hiding form boxes with null values</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/hiding-form-boxes-with-null-values/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/hiding-form-boxes-with-null-values/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 21:42:30 +0000</pubDate>
		<dc:creator>Wesleycrozier</dc:creator>
				<category><![CDATA[forms]]></category>
		<category><![CDATA[NULL values]]></category>
		<category><![CDATA[Visible]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello, I have a table that has Name vs F1/F2/F3/F4 and so on. Certain names have a check mark &#8220;x&#8221; and others do not. I need to be able to pull up someones name and see a summary of what they have &#8220;x&#8221;&#8216;s in. I created a Columnar form that has each name as a [...]]]></description>
				<content:encoded><![CDATA[<p>Hello,</p>
<p>I have a table that has Name vs F1/F2/F3/F4 and so on.  Certain names have a check mark &#8220;x&#8221; and others do not.  I need to be able to pull up someones name and see a summary of what they have &#8220;x&#8221;&#8216;s in.  I created a Columnar form that has each name as a seperate sheet; listing all of the F1/F2 etc with X&#8217;s and null values.  The problem is, I don&#8217;t want to print out a form that has 50 null text boxes.  How can I make it so that if an F1/F2 field is null, it won&#8217;t display itself on the form (or take space)?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/hiding-form-boxes-with-null-values/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/20 queries in 0.026 seconds using memcached
Object Caching 784/862 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 10:51:46 -->