Assuming i have
$_POST["x"]["y"] = 5;
how can i
Yii::app()->request->getPost('x[y]');
how can i retrieve the post variable by index ?
and is there any yii function that checks for sql injection ? does the getPost do that check ?
Thank you .
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I am not familiar with yii, but looking at the source code for the function
https://github.com/yiisoft/yii/blob/1.1.12/framework/web/CHttpRequest.php
You would do
The getPost function WILL NOT prevent sql injection. Please read http://www.yiiframework.com/wiki/275/how-to-write-secure-yii-applications/#hh11 for more information on securing your yii application