pakeidoprek has asked for the wisdom of the Perl Monks concerning the following question:
i have parameter $content='' and want insert cgi script and i get error like this :
print <<EOF; <thead class="flip-content"> <tr> <th width="20%"> Students id </th> <th class="numeric"> First Name </th> <th class="numeric"> Last Name </th> <th class="numeric"> Date Of Birth </th> <th class="numeric"> Year In </th> <th class="numeric"> Password </th> <th class="numeric"> Email </th> <th class="numeric"> Telepon </th> </tr> </thead> EOF while (my @row_array = $sth->fetchrow_array()) { print <<EOF; <tbody> <tr> <td> $row_array[0] </t +d> <td> $row_array[1] </t +d> <td> $row_array[2] </t +d> <td> $row_array[3] </t +d> <td> $row_array[4] </t +d> <td> $row_array[5] </t +d> <td> $row_array[6] </t +d> <td> $row_array[7] </t +d> </tr> </tbody> EOF } print"</table>";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: insert CGI script in single quotes.
by talexb (Chancellor) on Apr 25, 2016 at 16:01 UTC | |
by LanX (Saint) on Apr 25, 2016 at 16:52 UTC | |
by pakeidoprek (Novice) on Apr 26, 2016 at 07:56 UTC | |
|
Re: insert CGI script in single quotes.
by NetWallah (Canon) on Apr 25, 2016 at 16:42 UTC | |
by pakeidoprek (Novice) on Apr 26, 2016 at 08:52 UTC | |
by Corion (Patriarch) on Apr 26, 2016 at 09:09 UTC | |
by pakeidoprek (Novice) on Apr 26, 2016 at 17:44 UTC | |
by Corion (Patriarch) on Apr 26, 2016 at 18:41 UTC | |
by NetWallah (Canon) on Apr 26, 2016 at 16:19 UTC | |
by pakeidoprek (Novice) on Apr 26, 2016 at 17:49 UTC |