After making some comments, I've been inspired to get some feedback on the PHP MVC framework PRADO. I've been using it for over a year now and I've very much enjoyed working with it, however I notice that throughout Stack Overflow, it doesn't seem to rate a mention when symfony or CakePHP are being talked about as potential candidates fo...
I can guess that this might sound obvious for some people out there, but i would like to know wether a Framework wich has no complex folder-structure can be used within CakePHP.
...
Edit: The question concerns 100% web development only. Please do not relate the question to desktop development. Please read the entire question before responding.
I am certainly interested if there is currently any interest in developing PHP applications in a more desktop-like fashion. I mean something like the classic WebForms impleme...
i wonder why the creator of prado created a new framework called yii.
wasnt prado the right way to go? does this mean that i shouldnt even consider prado over yii?
is yii also component based?
...
iam looking for IDE with intellisense support for PHP Prado.
please suggest me some ide's.
...
I m new to PRADO, I have a file
Home.page with code:
<%@ Title="Contact List" %>
<h1>Contact List</h1>
<a href="<%= $this->Service->constructUrl('insert')%>">Create New Contact</a>
<br/>
<com:TForm>
<com:TDropDownList ID="personInfo">
<com:TListItem Value="value 1" Text="item 1" />
<com:TListItem Value="value 2" Text="item 2" Se...
Refers to my previous question : Show values in TDropDownList in PRADO.
ok fine the array i receive from query is an object array like :
ContactRecord Object ( [id] => 1 [name] => leo [_recordState:protected] => 1 [_connection:protected] => [_invalidFinderResult:protected] => [_e:TComponent:private] => Array ( ) )
ContactRecord Object (...
Hi,
I am starting out with PRADO php framework and i have a quick question: How to get the Primary Key of the last inserted record? My codes are as follow:
$studentRecord = new StudentRecord;
$studentRecord->Name = $this->txtName->SafeText;
$studentRecord->ContactNumber = $this->txtContactNo->SafeText;
$studentRecord->save();
// $stude...
Hi! I have 2 many-to-many tables and 1 association table for them:
1. Student
StudentID (PK)
2. NextOfKin
NextOfKin (PK)
3. StudentNextOfKin
StudentID, NextOfKinID (PK)
FK StudentID References Student(StudentID)
FK NextOfKinID References NextOfKin(NextOfKinID)
With the following codes, i am able to create a new NextOfKin record in D...