<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Larry Ullman's Book Forums - Newsletter, Blog, and Other Topics</title>
<description>A forum dedicated to topics brought up in one of Larry Ullmans newsletters, in his blog, or for any other topic not appropriate in the other forums.</description><link>http://www.larryullman.com/forum/list.php?18</link><lastBuildDate>Sat, 18 May 2013 22:45:50 -0400</lastBuildDate>
<generator>Phorum 5.2.16</generator>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,52160,52165#msg-52165</guid>
<title>Re: Tabular Input</title><link>http://www.larryullman.com/forum/read.php?18,52160,52165#msg-52165</link><description><![CDATA[ Thanks for the nice words and thanks for posting in the right forum. From what you describe, it sounds like you need to create a form that displays multiple Models. There's an example or two of this in the Yii documentation, I believe.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Mon, 14 Mar 2011 10:58:05 -0400</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,52130,52164#msg-52164</guid>
<title>Re: Dynamic textbox creation</title><link>http://www.larryullman.com/forum/read.php?18,52130,52164#msg-52164</link><description><![CDATA[ Okay, if you want to do this dynamically, you'll need to use JavaScript in the View to do it. You'll also need to adjust the Controller and the Model to allow for an array of text boxes. In short, this is not going to be easy.<br /><br />You would use modules in Yii if you have separate components to a Web site. Like I might use a module for the forums area.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Mon, 14 Mar 2011 10:56:41 -0400</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,52160,52160#msg-52160</guid>
<title>Tabular Input</title><link>http://www.larryullman.com/forum/read.php?18,52160,52160#msg-52160</link><description><![CDATA[ Thank you Larry for all the information and tutorials on Yii. Very precise and useful for us newbies. I have spent days trying to make the current references on Yii &quot;tabular input&quot; to work for my system but to no avail. I want to create a simple Order-Items form which allows a user to input many Items per Order in one go. How do I go about doing this?]]></description>
<dc:creator>amira.g</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Mon, 14 Mar 2011 03:49:33 -0400</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,52130,52144#msg-52144</guid>
<title>Re: Dynamic textbox creation</title><link>http://www.larryullman.com/forum/read.php?18,52130,52144#msg-52144</link><description><![CDATA[ Sorry for it sir. I want to implement the above task in yii. Its getting difficult for me to do it as i am learning it now.<br />Basically please give me idea of where to implement that in yii.<br />Is it in the controller or in the model class.<br />Also tell me the need of Modules in yii.<br />Please help me sir]]></description>
<dc:creator>sai rama</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Fri, 11 Mar 2011 23:53:29 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,52130,52141#msg-52141</guid>
<title>Re: Dynamic textbox creation</title><link>http://www.larryullman.com/forum/read.php?18,52130,52141#msg-52141</link><description><![CDATA[ First of all, I moved your post to the correct forum. You've posted a couple times now, and never in the right place. As for this particular question, you don't seem to be using Yii here at all.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Fri, 11 Mar 2011 21:56:54 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,52130,52130#msg-52130</guid>
<title>Dynamic textbox creation</title><link>http://www.larryullman.com/forum/read.php?18,52130,52130#msg-52130</link><description><![CDATA[ HI ,<br />I am trying to create text boxes dynamically , add the content of those textboxes and finally edit the column of the table.<br /><pre class="bbcode">
&lt;html&gt;
    &lt;head&gt;
        &lt;script language='javascript'&gt;
            function getBoxes2(){
                var val=document.getElementById(&quot;initTextBoxId2&quot;).value;
                var rid=document.getElementById(&quot;boxesId2&quot;);
                var str=&quot;&quot;;
                if(isNaN(val)){
                    alert(&quot;you have entered illegal value&quot;);
                    return;
                }
                else{
                    str +=&quot;&lt;div id='allTextBoxes'&gt;&quot;;

                    for(var i=1;i&lt;=val;i++)
                    {
                        str +=&quot;&lt;div&gt;&quot;;
                        str +=&quot;    &lt;span&gt;new text box &quot;+i+ &quot; :&lt;/span&gt;&quot;;
                        str +=&quot;    &lt;span&gt;&lt;input type='text' value='' size='30' /&gt;&lt;/span&gt;&quot;;
                        str +=&quot;&lt;/div&gt;&quot;;
                    }
                    str +=&quot;&lt;/div&gt;&quot;;

                    str +=&quot;&lt;div&gt;&quot;;
                    str +=&quot;    &lt;span&gt;&lt;input type='button' value='Enter'  onClick='javascript:getSum2()'/&gt;&lt;/span&gt;&quot;;

                    str +=&quot;&lt;/div&gt;&quot;;

                    rid.innerHTML=str;
                }
            }
            function getSum2(){
                var txtBoxes=document.getElementById(&quot;allTextBoxes&quot;).getElementsByTagName(&quot;input&quot;);
                var sum=0;
                var val;
                for(var  i=0;i&lt;txtBoxes.length;i++){
                    val=parseInt(txtBoxes<i>.value);
                    sum +=val;
                }

                alert(&quot;total is =&quot;+sum);
               // str+=&quot;&lt;span&gt;&lt;input type='text' value=&quot;sum&quot; /&gt;&lt;/span&gt;&quot;;
            }
        &lt;/script&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;div style='padding-left:100px;padding-top:50px'&gt;
            &lt;span&gt;Init textBox :&lt;/span&gt;&lt;span&gt;&lt;input type='text' value='' id='initTextBoxId2' size='30' onblur='javascript:getBoxes2()' /&gt;&lt;/span&gt;
            &amp;nbsp;&amp;nbsp;
            &lt;div id='boxesId2'&gt;&lt;/div&gt;
        &lt;/div&gt;
    &lt;/body&gt;
&lt;/html&gt;
</i></pre><br />now am not able to edit the total sum into the electricity_bill column through yii.<br />Please help me do this in yii php sir]]></description>
<dc:creator>sai rama</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Fri, 11 Mar 2011 02:13:35 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,51016,51096#msg-51096</guid>
<title>Re: JQuery and Frameworks on a Shared Hosting Website</title><link>http://www.larryullman.com/forum/read.php?18,51016,51096#msg-51096</link><description><![CDATA[ OK, thanks, I'll follow up. Don]]></description>
<dc:creator>clkdg</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Fri, 07 Jan 2011 19:22:32 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,51016,51088#msg-51088</guid>
<title>Re: JQuery and Frameworks on a Shared Hosting Website</title><link>http://www.larryullman.com/forum/read.php?18,51016,51088#msg-51088</link><description><![CDATA[ I've only read a couple of JavaScript books, and neither is great for learning as a beginner. I hear that &quot;The Missing Manual&quot; JavaScript book is good, though.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Fri, 07 Jan 2011 08:55:18 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,51016,51072#msg-51072</guid>
<title>Re: JQuery and Frameworks on a Shared Hosting Website</title><link>http://www.larryullman.com/forum/read.php?18,51016,51072#msg-51072</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br/></small><strong>Larry</strong><br/>
As for other books, &quot;jQuery in Action&quot; is pretty good. Keep in mind that what you're talking about is a good couple of steps past basic HTML. jQuery is a framework for doing JavaScript stuff. You still need a basic understanding of JavaScript to use it.</div></blockquote><br />I have the jQuery in Action on loan from my son, so what JavaScripts books would you suggest to begin with ?<br />Thanks and I'm keeping up with your newsletters..]]></description>
<dc:creator>clkdg</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 05 Jan 2011 22:38:53 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,51016,51066#msg-51066</guid>
<title>Re: JQuery and Frameworks on a Shared Hosting Website</title><link>http://www.larryullman.com/forum/read.php?18,51016,51066#msg-51066</link><description><![CDATA[ Yes, I have not written a book on JavaScript...yet. I'm planning on self-publishing one and will start working on it in a couple of weeks. I'll be posting updates about it in my newsletter. I have written a series on jQuery on my site, which might be helpful to you.<br /><br />As for other books, &quot;jQuery in Action&quot; is pretty good. Keep in mind that what you're talking about is a good couple of steps past basic HTML. jQuery is a framework for doing JavaScript stuff. You still need a basic understanding of JavaScript to use it.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 05 Jan 2011 21:50:01 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,51016,51061#msg-51061</guid>
<title>Re: JQuery and Frameworks on a Shared Hosting Website</title><link>http://www.larryullman.com/forum/read.php?18,51016,51061#msg-51061</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br/></small><strong>Larry</strong><br/>
think of jQuery as pretty easy to use, however it requires understanding of JavaScript and DOM. If you don't have those down, it's going to be a challenge for you.</div></blockquote><br />In another of my posts, you said you had not written a book on JavaScript. So do you a book recommendation of one that would cover what you would need to know for JQuey given you only had a basic knowledge of htlm ? Thanks and hope I used the forum quotes correctly.]]></description>
<dc:creator>clkdg</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 05 Jan 2011 18:07:47 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,51016,51020#msg-51020</guid>
<title>Re: JQuery and Frameworks on a Shared Hosting Website</title><link>http://www.larryullman.com/forum/read.php?18,51016,51020#msg-51020</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>I'm using a hosting service in a shared environment. they are telling me I can only use a framework like PEAR or Yii that can be uploaded to my cgi-bin folder and it can't be compiled or installed that would alter the environment. Not sure what that means?</div></blockquote><br />I'd be inclined to actually ask them what this means but I don't think it's the problem that you might think it is.<br /><br /><blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>1). How can I tell what frameworks are available to me that I can use as I don't understand what to look for?</div></blockquote><br />I don't think this greatly limits what framework you use. What you would look for is that you need to avoid anything that needs to be installed/built-into the server. Any framework that just requires uploading files is fine.<br /><br /><blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>2). Hosting service tells me that AJAX is not an option but I can use JQuery. Can JQuery communicate with PHP without using AJAX ? Without a lot of extra, difficult programming? I'm looking for something on the html side I can use to edit sine of the FORM data before it is submitted to the PHP script.</div></blockquote><br />I have no idea what that means about Ajax not being an option. jQuery cannot communicate with PHP without using Ajax. jQuery is client-side JavaScript. I would be stunned if you couldn't use jQuery to perform Ajax requests on your server.<br /><br />I think of jQuery as pretty easy to use, however it requires understanding of JavaScript and DOM. If you don't have those down, it's going to be a challenge for you.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Mon, 03 Jan 2011 12:55:30 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50997,51019#msg-51019</guid>
<title>Re: Change Hire Date to use jQuery DatePicker</title><link>http://www.larryullman.com/forum/read.php?18,50997,51019#msg-51019</link><description><![CDATA[ Given the information provided, my best guess is that Magic Gnomes are causing the problem.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Mon, 03 Jan 2011 12:51:33 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50996,51018#msg-51018</guid>
<title>Re: Display department name instead of department id</title><link>http://www.larryullman.com/forum/read.php?18,50996,51018#msg-51018</link><description><![CDATA[ You'll need to define the relation between employee and department, then refer to $model-&gt;department-&gt;name, replacing &quot;department&quot; with whatever name you've given that relation. I believe this exact idea is discussed in my series on Yii.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Mon, 03 Jan 2011 12:50:53 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,51016,51016#msg-51016</guid>
<title>JQuery and Frameworks on a Shared Hosting Website</title><link>http://www.larryullman.com/forum/read.php?18,51016,51016#msg-51016</link><description><![CDATA[ I'm using a hosting service in a shared environment. they are telling me I can only use a framework like PEAR or Yii that can be uploaded to my cgi-bin folder and it can't be compiled or installed that would alter the environment. Not sure what that means?<br /><br />They are saying if I can upload it and then just include it in my php script I can use it, I think that is what they are telling me.<br /><br />Two Questions:<br /><br />1). How can I tell what frameworks are available to me that I can use as I don't understand what to look for?<br /><br />2). Hosting service tells me that AJAX is not an option but I can use JQuery. Can JQuery communicate with PHP without using AJAX ? Without a lot of extra, difficult programming? I'm looking for something on the html side I can use to edit sine of the FORM data before it is submitted to the PHP script.<br /><br />Thanks]]></description>
<dc:creator>clkdg</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Mon, 03 Jan 2011 11:07:50 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50997,50999#msg-50999</guid>
<title>Re: Change Hire Date to use jQuery DatePicker</title><link>http://www.larryullman.com/forum/read.php?18,50997,50999#msg-50999</link><description><![CDATA[ oh got a problem here. After inserting the code, there is 1 more unknown textbox appear on the page. Any clue ?]]></description>
<dc:creator>markthien</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Sun, 02 Jan 2011 10:36:53 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50997,50998#msg-50998</guid>
<title>Re: Change Hire Date to use jQuery DatePicker</title><link>http://www.larryullman.com/forum/read.php?18,50997,50998#msg-50998</link><description><![CDATA[ I know. Just put the following code in &lt;webapp name&gt;/htdocs/protected/views/employee/create.php at<br /><br /><a href="http://localhost" rel="nofollow">http://localhost:8888/logonapp/index.php/employee/create</a><br /><br /><br /><pre class="bbcode">
<b>&lt;?php 
$this-&gt;widget('zii.widgets.jui.CJuiDatePicker', array(
    'name'=&gt;'Employee_hireDate',
    'name'=&gt;'Employee_leaveDate',
    // additional javascript options for the date picker plugin
    'options'=&gt;array(
    	'dateFormat'=&gt;'yy-mm-dd',
        'showAnim'=&gt;'fold',
    ),
    'htmlOptions'=&gt;array(
        'style'=&gt;'height:20px;'
    ),
));
?&gt;</b>
</pre>]]></description>
<dc:creator>markthien</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Sun, 02 Jan 2011 10:16:13 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50997,50997#msg-50997</guid>
<title>Change Hire Date to use jQuery DatePicker</title><link>http://www.larryullman.com/forum/read.php?18,50997,50997#msg-50997</link><description><![CDATA[ Hi guys,<br /><br />I need to change the hire date to use jQuery datepicker in<br /><br />[<a href="http://localhost:8888/logonapp/index.php/employee/create" rel="nofollow">localhost</a>]<br /><br />Can anyone please kindly show me how to archive this? Thanks in advance!<br /><br />regards,<br />Mark Thien]]></description>
<dc:creator>markthien</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Sun, 02 Jan 2011 07:22:47 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50996,50996#msg-50996</guid>
<title>Display department name instead of department id</title><link>http://www.larryullman.com/forum/read.php?18,50996,50996#msg-50996</link><description><![CDATA[ Hi Guys,<br /><br />I am new to Yii. I have just downloaded and it's really cool. I go to<br /><br />[<a href="http://localhost:8888/logonapp/index.php/employee/1" rel="nofollow">localhost</a>]<br /><br />and wanted to change department to display name instead of id. Can anyone tell me how to change this please? thanks in advance!<br /><br />regards,<br />Mark Thien]]></description>
<dc:creator>markthien</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Sun, 02 Jan 2011 07:20:03 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50793,50811#msg-50811</guid>
<title>Re: Seeking advice on client side languages</title><link>http://www.larryullman.com/forum/read.php?18,50793,50811#msg-50811</link><description><![CDATA[ One of the nice features of Yii is that it's easy to integrate third-party stuff like PEAR or Zend Framework modules. I would use Yii's form tools, but, for example, I commonly use Zend's HTML Email package within Yii sites.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 15 Dec 2010 11:40:39 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50793,50807#msg-50807</guid>
<title>Re: Seeking advice on client side languages</title><link>http://www.larryullman.com/forum/read.php?18,50793,50807#msg-50807</link><description><![CDATA[ Thanks, I'll go back and read all your info on JQuery and look for other sources to learn what I need to know.<br /><br />Follow up question , If I use the Yii framework can you still pick and choose what you want to use like the PEAR modules ,as I think that would be what I woudl want to do.<br /><br />Use something like PEAR QuickForm, and a enhanced email funtions, etc not to develop an entire website using a framework. But if Yii had that plus other things I may want in the futrue, then I want to spend the time learnign Yii on the front end. I'll go back and see your posts on Yii to look for sources to lean from.<br /><br />Appreciate the feedback.]]></description>
<dc:creator>clkdg</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 15 Dec 2010 10:35:54 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50793,50801#msg-50801</guid>
<title>Re: Seeking advice on client side languages</title><link>http://www.larryullman.com/forum/read.php?18,50793,50801#msg-50801</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>Larry, I hope this is the correct forum to ask this question. I've looked at most of the post trying to figure out the one or two technologies on the browser side I need to learn in conjunction to PHP on the servers side.</div></blockquote><br />This is fine.<br /><br /><blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>Given - hobby only, no plans for a commercial site. I'm using a host provider (one of the top 10) that uses CSS templates and I chose that so I could not have to build the all the html. I choose PHP over ROR because it appeared I could find more examples and code snippets to try. I then went looking to beginner php books and selected yours which has been really good for me, i like the format of your books and forum support.</div></blockquote><br />Thanks for the nice words. I'm a big fan of RoR, too, by the way, but keep in mind that RoR is a framework that uses Ruby. You still need to know Ruby in order to really use it.<br /><br /><blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>I'm an old assembler programmer so even though I understand oop, procedural is more natural to me. Eventually I want to get into a PHP framework to pick and choose some features to use when I have some more time, and it appears Yii or PEAR would be the ones to choose from. Interested in better (little fancier) email or newsletters to distribute</div></blockquote><br />PEAR isn't a complete framework, really. It's a bunch of pieces used for specific purposes. You could, in theory, use multiple pieces of PEAR to create a site, but it's not as cohesive as a true framework like Yii.<br /><br /><blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>My Host provider is of little help and you are on your own and they do have a few PECL frameworks so I would have to load anything in my own area to use. They may have some PEAR but not the QuickForm.</div></blockquote><br />Yeah, programming support is not normal with any hosting company.<br /><br /><blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>I don't think I will load a local server and al that as I know nothing about all and want to spent my time learning php.</div></blockquote><br />Understandable, but it takes practically no effort to install and use something like MAMP or XAMPP on your own computer.<br /><br /><blockquote class="bbcode"><div><small>Quote<br/></small><strong>clkdg</strong><br/>With this (TMI) background and looking at all the posts about AJAX, JQuery, JavaScripts FLEX, etc, my basic question is what would be a good choice to learn to do the things I want to do on the browser side, like editing form data, I will be depending on your beginner books to start with. I don’t think you have a JQuery book yet, but if that is the recommendation I would go with that. Hope I haven't rambled too much. But would certainly like our opinion. As I don't mind spending some time to work through it to learn but I don't want to learn a new technology and find it won't do the things I need to do. At my age I don't buy green bananas. .</div></blockquote><br />I find that jQuery is the easiest, most reliable solution for many client-side things. I'm a big fan of Flex, but Flex/Flash is really better for larger, more complicated tasks, whereas JavaScript can easily be used for simple tasks. No, I haven't written a jQuery book. I've done a series of posts on it on my blog, though. I'm also hoping to self-publish a JavaScript book in 2011, but that might be a green banana to you now!]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 15 Dec 2010 10:00:02 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50793,50793#msg-50793</guid>
<title>Seeking advice on client side languages</title><link>http://www.larryullman.com/forum/read.php?18,50793,50793#msg-50793</link><description><![CDATA[ Larry, I hope this is the correct forum to ask this question. I've looked at most of the post trying to figure out the one or two technologies on the browser side I need to learn in conjunction to PHP on the servers side.<br /><br />Given - hobby only, no plans for a commercial site. I'm using a host provider (one of the top 10) that uses CSS templates and I chose that so I could not have to build the all the html. I choose PHP over ROR because it appeared I could find more examples and code snippets to try. I then went looking to beginner php books and selected yours which has been really good for me, i like the format of your books and forum support.<br /><br />I'm an old assembler programmer so even though I understand oop, procedural is more natural to me. Eventually I want to get into a PHP framework to pick and choose some features to use when I have some more time, and it appears Yii or PEAR would be the ones to choose from. Interested in better (little fancier) email or newsletters to distribute<br /><br />My Host provider is of little help and you are on your own and they do have a few PECL frameworks so I would have to load anything in my own area to use. They may have some PEAR but not the QuickForm.<br /><br />I don't think I will load a local server and al that as I know nothing about all and want to spent my time learning php. I know ORACLE database SQL so the MySQL isn't too big of a deal to understand.<br /><br />My provider has Blog, FORUM widgets but doubt I will use them, I am using guestbook widget and CGI FormTool which I am exporting and importing to the database until I write my own form and php script.<br /><br />I'm still learning php but have written several scripts to correct the form data as I have limited control using their form builder, have the mail function working and your Paginating Query page with changing row colors, really neat.<br /><br />I have to have a project to learn new technologies and this project for our old high school is it. I want to continue learning and building some neat things like a memorial page with thumbnails and senior pictures, pushing out email on demand. HTML email (how and what to use, don't know) allow classmates to upload pictures, maybe video clips from our big all class reunion next year. Possibly a forum for classmates to post to.<br /><br />Collecting contact information now and next tasks is to replace the provided form page with my own FORM and php code to insert and allow users to log in and keep current. Your books have provided me enough to get that part done.<br /><br />With this (TMI) background and looking at all the posts about AJAX, JQuery, JavaScripts FLEX, etc, my basic question is what would be a good choice to learn to do the things I want to do on the browser side, like editing form data, I will be depending on your beginner books to start with. I don’t think you have a JQuery book yet, but if that is the recommendation I would go with that. Hope I haven't rambled too much. But would certainly like our opinion. As I don't mind spending some time to work through it to learn but I don't want to learn a new technology and find it won't do the things I need to do. At my age I don't buy green bananas. .]]></description>
<dc:creator>clkdg</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Tue, 14 Dec 2010 20:46:00 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50650,50652#msg-50652</guid>
<title>Re: New site is great</title><link>http://www.larryullman.com/forum/read.php?18,50650,50652#msg-50652</link><description><![CDATA[ Thanks for the feedback. I'm glad you like it and appreciate you saying so. As for Newsletter Pro, I wouldn't recommend using it. In fact, I'm going to stop using it myself. There are a couple of things that it doesn't do well and the documentation is non-existent, as is the support. In any case, to create the archives, I just posted every newsletter tagged under 'newsletter' and the archives page is just /tag/newsletter/. I'm not sure if Newsletter Pro does something itself, although it doesn't seem to be the case.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Tue, 07 Dec 2010 10:41:25 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50650,50650#msg-50650</guid>
<title>New site is great</title><link>http://www.larryullman.com/forum/read.php?18,50650,50650#msg-50650</link><description><![CDATA[ Larry, really like your new site. I have a question about the plug in your using for Newsletters. Newsletter Pro, did you write some code for the Archives? Or does this plug in handle Archives?<br /><br />Thank you<br /><br />Mike]]></description>
<dc:creator>fmcunningham</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Tue, 07 Dec 2010 08:45:52 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50435,50442#msg-50442</guid>
<title>Re: Yii calendar datepicker dateformat</title><link>http://www.larryullman.com/forum/read.php?18,50435,50442#msg-50442</link><description><![CDATA[ Glad you've got it working and thanks for sharing your solution.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 24 Nov 2010 17:00:21 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50436,50441#msg-50441</guid>
<title>Re: Yii has IRC channel now!</title><link>http://www.larryullman.com/forum/read.php?18,50436,50441#msg-50441</link><description><![CDATA[ Yes, I had seen that, but thanks for sharing.]]></description>
<dc:creator>Larry</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 24 Nov 2010 16:59:33 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50435,50438#msg-50438</guid>
<title>Re: Yii calendar datepicker dateformat</title><link>http://www.larryullman.com/forum/read.php?18,50435,50438#msg-50438</link><description><![CDATA[ Figured it out! I used the zii extension found at [<a href="http://www.yiiframework.com/doc/api/1.1/CJuiDatePicker" rel="nofollow">www.yiiframework.com</a>] since it does a call to Zii and does not require me to download anything. I copied the code they had in the example and replaced:<br />'name'=&gt;'publishDate',<br /><br />with the following:<br />'model'=&gt;$model,<br />'attribute'=&gt;'publishDate',<br /><br />I then added the following code in the bottom of my model:<br />protected function beforeSave()<br />{<br />$this-&gt;publishDate=date('Y-m-d', strtotime($this-&gt;publishDate));<br />return TRUE;<br />}<br />protected function afterFind()<br />{<br />$this-&gt;publishDate=date('m-d-Y', strtotime($this-&gt;publishDate));<br />return TRUE;<br />}<br />Now my date field is retrieved using USA date format (mm/dd/yyyy) and I can update the time correctly to my field in the mysql table.]]></description>
<dc:creator>research4oscar</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 24 Nov 2010 15:36:37 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50436,50436#msg-50436</guid>
<title>Yii has IRC channel now!</title><link>http://www.larryullman.com/forum/read.php?18,50436,50436#msg-50436</link><description><![CDATA[ Larry, not sure if you know but you can now chat live with others using the new Yii IRC Channel and you can even use a web browser if you don't have a client. You can get to directly from their home page following the link under the community menu.]]></description>
<dc:creator>research4oscar</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 24 Nov 2010 14:22:34 -0500</pubDate></item>
<item>
<guid>http://www.larryullman.com/forum/read.php?18,50435,50435#msg-50435</guid>
<title>Yii calendar datepicker dateformat</title><link>http://www.larryullman.com/forum/read.php?18,50435,50435#msg-50435</link><description><![CDATA[ Larry, do you have any examples where you successfully display/update a date field using any of the calendar extensions. Specifically I am trying to retrieve and display a date field in US standard date format (mm-dd-yyyy) and save it back to the database in mysql date format (yyyy-mm-dd). I've tried a few of the calendar extensions with no luck including jquery ui.<br /><br />I am using yii-1.1.4 on a mac pro using MAMP installation.<br /># Apache 2.0.63<br /># MySQL 5.1.44<br /># PHP 5.2.13 &amp; 5.3.2]]></description>
<dc:creator>research4oscar</dc:creator>
<category>Newsletter, Blog, and Other Topics</category><pubDate>Wed, 24 Nov 2010 14:18:40 -0500</pubDate></item>
</channel>
</rss>