Jump to content

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'


nevsi79

Recommended Posts

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?

<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.

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'/>";

thank you! :D

 

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 ::)

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.