nevsi79 Posted March 15, 2008 Share Posted March 15, 2008 Hey guys, I've got this script: <?php $max = (int) $_POST["wf_Relatives1-RC"]; for($i=1;$i<=$max;$i++) { if($i==1) { $repeatclass = "repeat"; $rowIndex = ""; } else { $repeatclass = "removeable"; $rowIndex = "-".$i; } if(isset($_POST["wf_FirstName".$rowIndex]) && isset($_POST["wf_LastName".$rowIndex]) && isset($_POST["wf_LastName".$rowIndex])) { // account for sequence gap. ?> <fieldset id="wf_Relatives1<?php echo($rowIndex)?>" class="<?php echo($repeatclass)?>"> <label for="wf_FirstName<?php echo($rowIndex)?>">Label 1: </label> <input type="text" id="wf_FirstName<?php echo($rowIndex)?>" name="wf_FirstName<?php echo($rowIndex)?>" value="<?php echo($_POST["wf_FirstName".$rowIndex])?>" /> <label for="wf_LastName<?php echo($rowIndex)?>">Label 2: </label> <input type="text" id="wf_LastName<?php echo($rowIndex)?>" name="wf_LastName<?php echo($rowIndex)?>" value="<?php echo($_POST["wf_LastName".$rowIndex])?>" /> </fieldset> <?php } } echo"<input type="hidden" name="wf_Relatives1-RC" id="wf_Relatives1-RC" value="'.$max.'"/>"; //this is line 26 ?> when I run it I get this error: Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'in /home2/nevsi79/public_html/wforms/firstoutput.php on line 26 Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' I've commented in the script where line 26 is. Can anyone help, please? Link to comment https://forums.phpfreaks.com/topic/96320-parse-error-syntax-error-unexpected-t_string-expecting-or/ Share on other sites More sharing options...
peranha Posted March 15, 2008 Share Posted March 15, 2008 <fieldset id="wf_Relatives1<?php echo($rowIndex); ?>" class="<?php echo($repeatclass); ?>"> <label for="wf_FirstName<?php echo($rowIndex); ?>">Label 1: </label> <input type="text" id="wf_FirstName<?php echo($rowIndex); ?>" name="wf_FirstName<?php echo($rowIndex); ?>" value="<?php echo($_POST["wf_FirstName".$rowIndex]); ?>" /> <label for="wf_LastName<?php echo($rowIndex); ?>">Label 2: </label> <input type="text" id="wf_LastName<?php echo($rowIndex); ?>" name="wf_LastName<?php echo($rowIndex); ?>" value="<?php echo($_POST["wf_LastName".$rowIndex]); ?>" /> </fieldset> <?php In these lines all you echo statements have to have ; after them. Link to comment https://forums.phpfreaks.com/topic/96320-parse-error-syntax-error-unexpected-t_string-expecting-or/#findComment-493042 Share on other sites More sharing options...
pocobueno1388 Posted March 15, 2008 Share Posted March 15, 2008 You can't use double quotes within double quotes without escaping the inside ones, or just use single quotes on the inside instead. Change it to: echo "<input type='hidden' name='wf_Relatives1-RC' id='wf_Relatives1-RC' value='$max'/>"; Link to comment https://forums.phpfreaks.com/topic/96320-parse-error-syntax-error-unexpected-t_string-expecting-or/#findComment-493043 Share on other sites More sharing options...
nevsi79 Posted March 15, 2008 Author Share Posted March 15, 2008 thank you! I changed the code to: <?php $max = (int) $_POST["wf_Relatives1-RC"]; for($i=1;$i<=$max;$i++) { if($i==1) { $repeatclass = "repeat"; $rowIndex = ""; } else { $repeatclass = "removeable"; $rowIndex = "-".$i; } if(isset($_POST["wf_FirstName".$rowIndex]) && isset($_POST["wf_LastName".$rowIndex]) && isset($_POST["wf_LastName".$rowIndex])) { // account for sequence gap. ?> <fieldset id="wf_Relatives1<?php echo($rowIndex); ?>" class="<?php echo($repeatclass); ?>"> <label for="wf_FirstName<?php echo($rowIndex); ?>">Label 1: </label> <input type="text" id="wf_FirstName<?php echo($rowIndex); ?>" name="wf_FirstName<?php echo($rowIndex); ?>" value="<?php echo($_POST["wf_FirstName".$rowIndex]); ?>" /> <label for="wf_LastName<?php echo($rowIndex); ?>">Label 2: </label> <input type="text" id="wf_LastName<?php echo($rowIndex); ?>" name="wf_LastName<?php echo($rowIndex); ?>" value="<?php echo($_POST["wf_LastName".$rowIndex]); ?>" /> </fieldset> <?php } } //echo"<input type=\"hidden\" name=\"wf_Relatives1-RC\" id=\"wf_Relatives1-RC\" value="'.$max.'"/>"; echo"<input type='hidden' name='wf_Relatives1-RC' id='wf_Relatives1-RC' value='".$max."'/>"; ?> and now it works! However can anyone help me, show me/ tell me how to put this: <fieldset id="wf_Relatives1<?php echo($rowIndex); ?>" class="<?php echo($repeatclass); ?>"> <label for="wf_FirstName<?php echo($rowIndex); ?>">Label 1: </label> <input type="text" id="wf_FirstName<?php echo($rowIndex); ?>" name="wf_FirstName<?php echo($rowIndex); ?>" value="<?php echo($_POST["wf_FirstName".$rowIndex]); ?>" /> <label for="wf_LastName<?php echo($rowIndex); ?>">Label 2: </label> <input type="text" id="wf_LastName<?php echo($rowIndex); ?>" name="wf_LastName<?php echo($rowIndex); ?>" value="<?php echo($_POST["wf_LastName".$rowIndex]); ?>" /> </fieldset> in an array, check whether it is an array and then print the array? ??? I am really afraid of multidimensional arrays Link to comment https://forums.phpfreaks.com/topic/96320-parse-error-syntax-error-unexpected-t_string-expecting-or/#findComment-493062 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.