<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss version="2.0">
			<channel>
				<title>The UnOfficial CakePHP Forum</title>
				<link>http://www.cakephpforum.net</link>
				<generator>RSS IPB news 1.5</generator>
				<description>The forum for Cake Bakers</description>
				<lastBuildDate>Tue, 21 May 2013 09:17:03 +0000</lastBuildDate><language>en</language><copyright>CakePHPForum.net</copyright><managingEditor>admin@cakephpforum.net</managingEditor>
						<webMaster>admin@cakephpforum.net</webMaster><image>
							<url>http://www.cakephpforum.net/images/logo.gif</url> 
							<link>http://www.cakephpforum.net</link> 
							<title>The UnOfficial CakePHP Forum</title>
							<width>144</width> 
							<height>56</height>
							<description>The forum for Cake Bakers</description> 
						</image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheUnofficialCakephpForum" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="theunofficialcakephpforum" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		            <pubDate>Mon, 20 May 2013 17:32:42 +0000</pubDate>
		            <title>How to crope image using Photoshop?</title>
					<description><![CDATA[ Hi friends,<br>How to crope image using Photoshop? please help let me know and share your suggestion.<br>Thanks. ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3387</link>
		         </item><item>
		            <pubDate>Mon, 20 May 2013 09:26:28 +0000</pubDate>
		            <title>Action not getting called from view form update.</title>
					<description><![CDATA[ My task was to add one more tab to a page which has 2 tabs already named &#39;Day&#39;and &#39;Month&#39;. This new tab would pick up data from a new table &#39;Finbills&#39;, populate the drop down list of a form, and display the values in table. I created a model &#39;Finbill&#39; and an action &#39;finbill_day&#39; in controller.<br><br>Following is my views/elements/reports/tabs.ctp which has the new tab defined:</div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><br> &nbsp; &nbsp;&#60;?php<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;tabs = array&#40;&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;dayUrl = &#036;this-&#62;Html-&#62;url&#40;array&#40;&#39;action&#39; =&#62; &#39;financial_day&#39;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;dayUrlActive = &#40;strpos&#40;&#036;this-&#62;here, &#036;dayUrl&#41; &#33;== false&#41; ? array&#40;&#39;class&#39; =&#62; &#39;active&#39;&#41; &#58; null;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;tabs&#91;&#93; = &#036;this-&#62;Html-&#62;link&#40;__&#40;&#34;Day&#34;, true&#41;, &#036;dayUrl, &#036;dayUrlActive&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;monthUrl = &#036;this-&#62;Html-&#62;url&#40;array&#40;&#39;action&#39; =&#62; &#39;financial_month&#39;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;monthUrlActive = &#40;strpos&#40;&#036;this-&#62;here, &#036;monthUrl&#41; &#33;== false&#41; ? array&#40;&#39;class&#39; =&#62; &#39;active&#39;&#41; &#58; null;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;tabs&#91;&#93; = &#036;this-&#62;Html-&#62;link&#40;__&#40;&#34;Month&#34;, true&#41;, &#036;monthUrl, &#036;monthUrlActive&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;monthUrl = &#036;this-&#62;Html-&#62;url&#40;array&#40;&#39;action&#39; =&#62; &#39;finbill_day&#39;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;monthUrlActive = &#40;strpos&#40;&#036;this-&#62;here, &#036;monthUrl&#41; &#33;== false&#41; ? array&#40;&#39;class&#39; =&#62; &#39;active&#39;&#41; &#58; null;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#036;tabs&#91;&#93; = &#036;this-&#62;Html-&#62;link&#40;__&#40;&#34;BillDay&#34;, true&#41;, &#036;monthUrl, &#036;monthUrlActive&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp;if&#40;&#33;empty&#40;&#036;tabs&#41;&#41; {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;Html-&#62;tag&#40;&#39;div&#39;, implode&#40;&#39;&#39;, &#036;tabs&#41;, array&#40;&#39;id&#39; =&#62; &#39;tabs&#39;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp;}<br> &nbsp; &nbsp;?&#62;<br></td></tr></table><div class='postcolor'><br><br>Here, third set of entry is for &#39;BillDay&#39; tab which calls action &#39;finbill_day&#39;.<br><br>When I click on the tab, the data gets populated. I have attached the image that shows up<br><br>Following is my controller function:<br></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><br> &nbsp; &nbsp; function finbill_day&#40;&#41; {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;this-&#62;Prg-&#62;commonProcess&#40;&#39;Finbill&#39;&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;searchConditions = &#036;this-&#62;Finbill-&#62;parseCriteria&#40;&#036;this-&#62;passedArgs&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;finbill = &#036;this-&#62;Finbill-&#62;find&#40;&#39;first&#39;, array&#40;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;conditions&#39; =&#62; &#036;searchConditions,<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;contain&#39; =&#62; false,<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;order&#39; =&#62; array&#40;&#39;end_of_bill_date&#39; =&#62; &#39;desc&#39;&#41;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#41;&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;finbillList = &#036;this-&#62;Finbill-&#62;find&#40;&#39;list&#39;, array&#40;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;contain&#39; =&#62; false,<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;fields&#39; =&#62; array&#40;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;end_of_bill_date&#39;,<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;_end_of_bill_date&#39;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#41;,<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;order&#39; =&#62; array&#40;&#39;end_of_bill_date&#39; =&#62; &#39;desc&#39;&#41;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#41;&#41;;<br> &nbsp; &nbsp;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;this-&#62;set&#40;compact&#40;&#39;finbill&#39;, &#39;finbillList&#39;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br></td></tr></table><div class='postcolor'><br><br>And following is my view code:<br></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><br>&#60;div class=&#34;panel&#34;&#62;<br> &nbsp; &nbsp;&#60;h2&#62;&#60;?php echo sprintf&#40;__&#40;&#34;End of Business %s&#34;, true&#41;, &#036;finbill&#91;&#39;Finbill&#39;&#93;&#91;&#39;_end_of_bill_date&#39;&#93;&#41;; ?&#62;&#60;/h2&#62;<br> &nbsp; &nbsp;&#60;div class=&#34;panel-content&#34;&#62;<br> &nbsp; &nbsp; &nbsp; &#60;?php echo &#036;this-&#62;element&#40;&#39;reports/tabs&#39;&#41;; ?&#62;<br> &nbsp; &nbsp; &nbsp; &#60;div id=&#34;search&#34; class=&#34;form&#34;&#62;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#60;?php<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;Form-&#62;create&#40;&#39;Finbill&#39;, array&#40;&#39;url&#39; =&#62; array&#40;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;controller&#39; =&#62; &#39;reports&#39;,<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;action&#39; =&#62; &#39;finbill_day&#39;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#41;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;Form-&#62;input&#40;&#39;end_of_bill_date&#39;, array&#40;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;label&#39; =&#62; __&#40;&#34;Select Cycle&#34;, true&#41;,<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;options&#39; =&#62; &#036;finbillList<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;Form-&#62;end&#40;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;?&#62;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#60;/div&#62;<br> &nbsp; &nbsp; &nbsp; &nbsp;&#60;?php<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;labels = array&#40;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;billed_in_cycle&#39;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#41;;<br><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;Html-&#62;tag&#40;&#39;h3&#39;, __&#40;&#34;Billed&#34;, true&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;DataTable-&#62;create&#40;array&#40;&#39;class&#39; =&#62; &#39;vertical&#39;&#41;&#41;;<br><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;foreach&#40;&#036;labels as &#036;key =&#62; &#036;label&#41; {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if&#40;is_numeric&#40;&#036;key&#41;&#41; {<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;key = &#036;label;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#036;label = Inflector&#58;&#58;humanize&#40;&#036;label&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;DataTable-&#62;createRow&#40;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;DataTable-&#62;createHeader&#40;__&#40;&#036;label, true&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;DataTable-&#62;createCell&#40;sprintf&#40;&#34;&#036;%s&#34;, number_format&#40;&#036;finbill&#91;&#39;Finbill&#39;&#93;&#91;&#036;key&#93;, 2&#41;&#41;, array&#40;&#39;class&#39; =&#62; &#39;value&#39;&#41;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;DataTable-&#62;endRow&#40;&#41;;<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br><br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;echo &#036;this-&#62;DataTable-&#62;end&#40;&#41;;<br><br> &nbsp; &nbsp; &nbsp; &nbsp;?&#62;<br> &nbsp; &nbsp;&#60;/div&#62;<br>&#60;/div&#62;<br>&#60;?php<br> &nbsp; &nbsp;&#036;this-&#62;Html-&#62;script&#40;&#34;reports/finbill_day&#34;, array&#40;&#39;inline&#39; =&#62; false&#41;&#41;;<br>?&#62;<br></td></tr></table><div class='postcolor'><br><br>The problem is, that when I try to change the input value in form(the list box), then data is not getting refreshed.<br><br>Any help on this is much appreciated.<br><br>I am using cakePHP1.3.<br> ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3386</link>
		         </item><item>
		            <pubDate>Mon, 20 May 2013 09:21:03 +0000</pubDate>
		            <title>Fix for Gallery issues on 4.4.1 servers.</title>
					<description><![CDATA[ As most of you are (or should be&#33;) aware, we&#39;ve been updating PHP slowly to 4.4.1. This appears to have caused some issues for Gallery users trying to create, edit, or delete an exhibition. The fix is simple, just download the following script and replace the current editor_functions.php file. To download, right click the link and choose &quot;Save As&quot;. ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3385</link>
		         </item><item>
		            <pubDate>Mon, 20 May 2013 09:19:01 +0000</pubDate>
		            <title>How to fixed top div using css?</title>
					<description><![CDATA[ Hello Guys,<br>I did try to fix my top div but when i set position:fixed for top div then the div goes in left. please help me to fixed it.<br>i am using like that;<br>&lt;div id=&quot;top&quot;&gt;&lt;/div&gt;<br>&lt;div id=&quot;content&quot;&gt;&lt;/div&gt;<br><br>CSS code<br>#top<br>{<br>position:fixed;<br>z-index:100;<br>}<br>Please help me to solve out this proble.<br> ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3384</link>
		         </item><item>
		            <pubDate>Sat, 18 May 2013 16:48:19 +0000</pubDate>
		            <title>Three objectives of perfect web design.</title>
					<description><![CDATA[ Hi friends,<br>Many times web designers created very common mistake at the time of designing a website, they forget the objective of designing and only focusing on the look of the website. There are three objectives of perfect web designing.<br><br>1.   Make Your Website Load Fast<br>2.   Create proper structure and arrange elements in a way that are easy to understand by users.<br>3.   Provide most relevant information on the website.<br> ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3383</link>
		         </item><item>
		            <pubDate>Sat, 18 May 2013 13:46:46 +0000</pubDate>
		            <title>Email confirmation on new resistration in php ?</title>
					<description><![CDATA[ Hello friends,<br>I want to make my website registration more secure and i want to send a confirmation mail on new registration. so guys help me and suggest me a best php script for that.<br>Thanks. ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3382</link>
		         </item><item>
		            <pubDate>Sat, 18 May 2013 13:45:15 +0000</pubDate>
		            <title>Error MYI'. (errno: 145)</title>
					<description><![CDATA[ Hi,<br><br>Were getting a few tickets from people with forum boards with regards to the<br>MYI&#39;. (errno: 145)<br>Error 145 = Table was marked as crashed and should be repaired<br>This mainly happens with the &quot;sessions&quot; table.<br>This is the table responsible for storing who is logged in.<br>It&#39;s called by the script in order to display the username.<br>please share your feedback on this.<br>thanks.<br> ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3381</link>
		         </item><item>
		            <pubDate>Fri, 17 May 2013 16:35:23 +0000</pubDate>
		            <title>what should i use for redierct to page?</title>
					<description><![CDATA[ Hello Guys, <br>after login i want user to redirect on index.php so there is two command to redirect so which should be i use and why? please share your review. <br>RedirectToURL(&quot;index.php&quot;); and second is &quot;header(location:index.php);<br> which one should i use for redirection. ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3380</link>
		         </item><item>
		            <pubDate>Fri, 17 May 2013 10:55:29 +0000</pubDate>
		            <title>What is splitting of links?</title>
					<description><![CDATA[ Hi friends,<br>I read in an article that one should avoid splitting of links. Links that come from outside shall have same url as internal links of the same landing page. What does that mean? ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3379</link>
		         </item><item>
		            <pubDate>Fri, 17 May 2013 10:53:56 +0000</pubDate>
		            <title>A Problem with Apache + PHP.</title>
					<description><![CDATA[ Hello Guys,<br>I&#39;ve installed Apache server (2.0.48) and PHP (4.3.4) and I&#39;ve encountered this problem when trying to get variables from the address bar (don&#39;t know any    other way to describe it). it can&#39;t get the id variable from there. i don&#39;t know if the problem is with apache settings or php.ini.<br> thanks in advance. ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3378</link>
		         </item><item>
		            <pubDate>Thu, 16 May 2013 09:36:56 +0000</pubDate>
		            <title>Twitter bootstrap Alert not works in Cakephp</title>
					<description><![CDATA[ iam new one to cakephp, i configured cakephp with twitter bootstrap layout.<br><br>I create alert message in index page ,when clicked close button in alert it closed.<br>when change into another page that page also i create a alert message but not works..any one have idea about this reply me..<br> i attached sample code also<br><br><br>model code:<br></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><br>&#60;?php <br>class Task extends AppModel<br>{ <br> &nbsp; &nbsp;var &#036;name = &#39;Task&#39;; <br> <br>} <br>?&#62;<br><br></td></tr></table><div class='postcolor'> <br><br>Controller code:<br></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><br>&#60;?php <br>class TasksController extends AppController<br>{ <br> &nbsp; &nbsp;var &#036;name = &#39;Tasks&#39;; <br> &nbsp; &nbsp;var &#036;components = array&#40;&#39;Session&#39;&#41;;<br> &nbsp; &nbsp;var &#036;helpers = array&#40;&#39;Html&#39;, &#39;Form&#39;&#41;;<br> &nbsp; &nbsp;public function beforeFilter&#40;&#41; {<br> &nbsp; &nbsp;parent&#58;&#58;beforeFilter&#40;&#41;;<br> &nbsp; &nbsp;}<br> &nbsp; &nbsp;<br> &nbsp; &nbsp;function index&#40;&#41; <br> &nbsp; &nbsp;{<br> &nbsp; &nbsp;<br> &nbsp; &nbsp;}<br><br> &nbsp; &nbsp;function index1&#40;&#41;<br> &nbsp; &nbsp;{<br> &nbsp; &nbsp;<br> &nbsp; &nbsp;}<br><br> &nbsp; &nbsp;<br>}<br><br>?&#62;<br></td></tr></table><div class='postcolor'><br><br><br>View code:(index.ctp)<br></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><br>&#60;html&#62;<br>&#60;head&#62;<br><br>&#60;meta name=&#34;viewport&#34; content=&#34;width=device-width, initial-scale=1.0&#34;&#62;<br>&#60;&#33;-- Bootstrap --&#62;<br>&#60;link href=&#34;css/bootstrap.min.css&#34; rel=&#34;stylesheet&#34; media=&#34;screen&#34;&#62;<br>&#60;/head&#62;<br><br>&#60;body&#62;<br>&#60;/br&#62;<br>&#60;?php echo &#036;this-&#62;html-&#62;link&#40;&#39;Click Me&#39;, array&#40;&#39;action&#39;=&#62;&#39;index1&#39;&#41;&#41;; ?&#62;<br>&#60;/br&#62;<br>&#60;/br&#62;<br>&#60;/br&#62;<br><br><br>&#60;?php <br>echo &#036;this-&#62;Form-&#62;create&#40;&#39;Task&#39;,array&#40;&#39;controller&#39; =&#62; &#39;Tasks&#39;,&#39;action&#39;=&#62;&#39;index1&#39;&#41;&#41;;<br>echo &#036;this-&#62;Form-&#62;submit&#40;&#39;Click Me&#39;,array&#40;&#39; class&#39;=&#62;&#39;btn btn-success &#39;,&#39; name&#39;=&#62;&#39;commit&#39; ,&#39;type&#39;=&#62;&#39;submit&#39; ,&#39;value&#39;=&#62;&#39;Sign in&#39; &#41;&#41;;<br>echo &#036;this-&#62;Form-&#62;end&#40;&#41;;<br>?&#62;<br><br><br><br> &nbsp; &nbsp;&#60;div class=&#34;alert&#34;&#62;<br> &nbsp; &nbsp;&#60;button type=&#34;button&#34; class=&#34;close&#34; data-dismiss=&#34;alert&#34;&#62;&amp;times;&#60;/button&#62;<br> &nbsp; &nbsp;&#60;strong&#62;Warning&#33;&#60;/strong&#62; Best check yo self, you&#39;re not looking too good.<br> &nbsp; &nbsp;&#60;/div&#62;<br><br>&#60;script src=&#34;http&#58;//code.jquery.com/jquery.js&#34;&#62;&#60;/script&#62;<br> &#60;script src=&#34;js/bootstrap.min.js&#34;&#62;&#60;/script&#62; <br>&#60;/body&#62;<br>&#60;/html&#62;<br><br></td></tr></table><div class='postcolor'><br>Index1.ctp:<br><br></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td><b>CODE</b> </td></tr><tr><td id='CODE'><br>&#60;html&#62;<br>&#60;head&#62;<br>&#60;title&#62;Bootstrap 101 Template&#60;/title&#62;<br>&#60;meta name=&#34;viewport&#34; content=&#34;width=device-width, initial-scale=1.0&#34;&#62;<br>&#60;&#33;-- Bootstrap --&#62;<br>&#60;link href=&#34;css/bootstrap.min.css&#34; rel=&#34;stylesheet&#34; media=&#34;screen&#34;&#62;<br>&#60;/head&#62;<br><br>&#60;body&#62;<br><br><br><br> &nbsp; &nbsp;&#60;div class=&#34;alert&#34;&#62;<br> &nbsp; &nbsp;&#60;button type=&#34;button&#34; class=&#34;close&#34; data-dismiss=&#34;alert&#34;&#62;&amp;times;&#60;/button&#62;<br> &nbsp; &nbsp;&#60;strong&#62;Warning&#33;&#60;/strong&#62; Best check yo self, you&#39;re not looking too good.<br> &nbsp; &nbsp;&#60;/div&#62;<br><br>&#60;script src=&#34;http&#58;//code.jquery.com/jquery.js&#34;&#62;&#60;/script&#62;<br>&#60;script src=&#34;js/bootstrap.min.js&#34;&#62;&#60;/script&#62;<br>&#60;/body&#62;<br>&#60;/html&#62;<br></td></tr></table><div class='postcolor'><br><br><br>give the suggestion to solve this error. ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3377</link>
		         </item><item>
		            <pubDate>Wed, 15 May 2013 11:00:25 +0000</pubDate>
		            <title>syntax error.</title>
					<description><![CDATA[ Hi there,<br>I can&#39;t find where I made a mistake, for years...<br>&#036;row = &quot;INSERT INTO Student (Name, Surename, StudentID, Generation) VALUES (&#39;&#036;_POST[&#036;student_data[0]]&#39;, &#39;&#036;_POST[&#036;student_data[1]]&#39;, &#39;&#036;_POST[&#036;student_data<br><br>[2]]&#39;, &#39;&#036;_POST[&#036;student_data[3]]&#39;)&quot;;<br> ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3376</link>
		         </item><item>
		            <pubDate>Wed, 15 May 2013 10:59:20 +0000</pubDate>
		            <title>Sitemap Importance?</title>
					<description><![CDATA[ Hi friends<br>Is sitemap important for your site ? and how can we generate this . ? please share your feedback.<br>Thanks.<br> ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3375</link>
		         </item><item>
		            <pubDate>Wed, 15 May 2013 01:24:19 +0000</pubDate>
		            <title>Research about frameworks</title>
					<description><![CDATA[ Hello&#33;<br><br>I&#39;m doing a research about frameworks for PHP.<br>Currently, I&#39;m researching the frameworks Zend, CakePHP, CodeIgniter, Yii and Symfony.<br><br>I&#39;m new in the subject, and I&#39;m reading a lot of tutorials and manuals.<br>The materials are good, and I could learn a lot of what these frameworks can do.<br><br>But, in the moment, I came here trying to know what CakePHP *<b>can&#39;t do</b>*.<br>In other words, those features that we miss after working some time with the framework.<br><br>Can you please tell me some features that you miss in CakePHP for the improvement of my research?<br><br>Thank you&#33;<br>Fabio Schunig ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3374</link>
		         </item><item>
		            <pubDate>Tue, 14 May 2013 16:41:08 +0000</pubDate>
		            <title>which is best for web developing .net or php?</title>
					<description><![CDATA[ Hi Guys,<br>Which is best for web developing .net or php. what you think about. please share your feedback.<br>Thanks. ]]></description>
		            <link>http://www.cakephpforum.net/index.php?showtopic=3373</link>
		         </item></channel>
		</rss>
