tinkertron Posted January 6, 2010 Share Posted January 6, 2010 So I just install this software I bought acouple of days ago, and durning the setup of the phpgrid.php I get this error: Parse error: syntax error, unexpected ')' in C:\xampp\htdocs\datagrid\include\cls_control.php on line 52 Here's the cls_control.php file: <?php class c_htmlcontrol { var $type; var $varname; var $text; var $val; var $is_choosen; var $is_disabled; var $attr_select; function c_htmlcontrol( $newtype, $newvarname, $newval, $newtext, $new_attrselect, $disable = false ) { $this->type = $newtype; $this->text = $newtext; $this->varname = $newvarname; $this->val = $newval; $this->is_choosen = false; $this->is_diabled = $disable; $this->attr_select = $new_attrselect; } function render( ) { $html = ""; switch ( $this->type ) { case "select" : $html .= "<option value='".$this->val."'"; break; default : $html .= "<input name ='".$this->varname."[]' id ='".$this->varname."[]' type ='".$this->type."' value='".$this->val."'"; $html .= $this->is_disabled ? " onfocus='blur();' " : ""; } $html .= $this->is_choosen ? " ".$this->attr_select." " : ""; $html .= " />".$this->text; echo $html; } } class radio extends c_htmlcontrol { var $type; function render( ) { ( ); } function radio( $newvarname, $newval, $newtext ) { ( "radio", $newvarname, $newval, $newtext, "checked" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } } class dropdown extends c_htmlcontrol { function render( ) { ( ); } function dropdown( $newvarname, $newval, $newtext ) { ( "select", $newvarname, $newval, $newtext, "selected" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } } class checkbox extends c_htmlcontrol { var $delimiter; function render( ) { ( ); } function checkbox( $newvarname, $newval, $newtext, $newdelim ) { $this->delimiter = $newdelim; ( "checkbox", $newvarname, $newval, $newtext, "checked" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } function get_delimiter( ) { return $this->delimiter; } function set_delimiter( $newdelim ) { $this->delimiter = $newdelim; } } class multiselect extends c_htmlcontrol { var $delimiter; var $size; function render( ) { $html = ""; $html .= "<option value='".$this->val."'"; $html .= $this->is_choosen ? " ".$this->attr_select." " : ""; $html .= " />".$this->text; echo $html; } function multiselect( $newvarname, $newval, $newtext, $newsize, $newdelim ) { $this->size = $newsize; $this->delimiter = $newdelim; ( "select", $newvarname, $newval, $newtext, "selected" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } function get_delimiter( ) { return $this->delimiter; } function set_delimiter( $newdelim ) { $this->delimiter = $newdelim; } } ?> Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/ Share on other sites More sharing options...
teamatomic Posted January 6, 2010 Share Posted January 6, 2010 I dont think php likes this: function render( ) { ( ); } HTH Teamatomic Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-989345 Share on other sites More sharing options...
Buddski Posted January 6, 2010 Share Posted January 6, 2010 I would put my money on the render functions with just ( ); inside them.. Also the radio, dropdown, checkbox, multiselect functions look a little wrong aswell.. function radio( $newvarname, $newval, $newtext ) { ( "radio", $newvarname, $newval, $newtext, "checked" ); } Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-989347 Share on other sites More sharing options...
tinkertron Posted January 6, 2010 Author Share Posted January 6, 2010 Well I don't know what happen but I can tell you this, this file was ZEND and I used a DEZENDER. Do you think the DEZENDER didn't work right? Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-989367 Share on other sites More sharing options...
teamatomic Posted January 6, 2010 Share Posted January 6, 2010 Yup, it dropped the html to make the form widget. HTH Teamtomic Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-989386 Share on other sites More sharing options...
tinkertron Posted January 6, 2010 Author Share Posted January 6, 2010 Is there any other dezend that won't drop the HTML? Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-989398 Share on other sites More sharing options...
toto78 Posted March 15, 2010 Share Posted March 15, 2010 Hi, I've exactly the same problem... I uncrypted zend files with a dezender, and my browser show the same error as u ! Currently I stay without solution ! Since the last reply, have you found a new idea about this ? Tx in advance... Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-1026447 Share on other sites More sharing options...
tinkertron Posted March 15, 2010 Author Share Posted March 15, 2010 No I was not able to get this resolved so I told the company and they gave me a un-encypeted version. Sorry wish I could have been more help. Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-1026482 Share on other sites More sharing options...
toto78 Posted March 16, 2010 Share Posted March 16, 2010 So, when you see their uncrypted code, how is the function syntax you describe in the head of this post : function radio( $newvarname, $newval, $newtext ) { ( "radio", $newvarname, $newval, $newtext, "checked" ); } For me, this syntax "( "radio", $newvarname, $newval, $newtext, "checked" );" seems very strange. My Apache Server (with EasyPHP) always found the same parse error about this line. Eventually, could you send me your uncrypted version by this mail : [email protected] ?? I'd be very grateful Thx in advance... Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-1026861 Share on other sites More sharing options...
tinkertron Posted March 16, 2010 Author Share Posted March 16, 2010 I would have to get back with u on that cause I took down my server and it might not be up for another month. Quote Link to comment https://forums.phpfreaks.com/topic/187351-datagrid-error-i-need-your-help/#findComment-1027135 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.